mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-17 07:30:16 -05:00
Set the landscape-mode text colors to something more reasonable (and really "default") in the landscape xml layout templates
Re-remove the explicit subject color hardcoding in FolderMessageList.java
This commit is contained in:
parent
c00eb30524
commit
d0d6eb5442
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:versionCode="105"
|
||||
android:versionName="0.105" package="com.fsck.k9">
|
||||
android:versionCode="106"
|
||||
android:versionName="0.106" package="com.fsck.k9">
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
||||
<uses-permission android:name="android.permission.READ_CONTACTS"/>
|
||||
<uses-permission android:name="android.permission.READ_OWNER_DATA"/>
|
||||
|
@ -18,7 +18,7 @@
|
||||
android:ellipsize="end"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:singleLine="true"
|
||||
android:textColor="?android:attr/textColorPrimaryInverse"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
android:layout_width="50px"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentRight="true" />
|
||||
@ -29,7 +29,7 @@
|
||||
android:layout_width="110px"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="?android:attr/textColorSecondaryInverse"
|
||||
android:textColor="?android:attr/textColorSecondary"
|
||||
android:paddingLeft="3px"
|
||||
android:paddingRight="3px"
|
||||
android:layout_toLeftOf="@+id/date" />
|
||||
@ -38,7 +38,7 @@
|
||||
android:ellipsize="end"
|
||||
android:singleLine="true"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="?android:attr/textColorPrimaryInverse"
|
||||
android:textColor="?android:attr/textColorPrimary"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="10px"
|
||||
|
@ -2199,10 +2199,6 @@ public class FolderMessageList extends ExpandableListActivity
|
||||
{
|
||||
holder.subject.setTextColor(Email.FLAGGED_COLOR);
|
||||
}
|
||||
else
|
||||
{
|
||||
holder.subject.setTextColor(0xff000000);
|
||||
}
|
||||
|
||||
holder.subject.setText(message.subject);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user