diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2012-06-22 17:40:29 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2012-06-22 17:40:29 +0400 |
| commit | 16fda5c5ae839c51debb882f4d3c24d276393f3b (patch) | |
| tree | c3880f19bce93f344ca195fc83da83f4d6c502d9 /res/layout-xlarge | |
| parent | fbb131fa0c4665d63375173a3d4b810b755e6d14 (diff) | |
remove hardcoded gray from headline rows layout
properly deselect active article in headlines when closing article panel
Diffstat (limited to 'res/layout-xlarge')
| -rw-r--r-- | res/layout-xlarge/headlines_row.xml | 2 | ||||
| -rw-r--r-- | res/layout-xlarge/headlines_row_selected.xml | 2 | ||||
| -rw-r--r-- | res/layout-xlarge/headlines_row_unread.xml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/res/layout-xlarge/headlines_row.xml b/res/layout-xlarge/headlines_row.xml index 9a311ef9..6b46d81d 100644 --- a/res/layout-xlarge/headlines_row.xml +++ b/res/layout-xlarge/headlines_row.xml @@ -64,7 +64,7 @@ android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Jan 01"
- android:textColor="#909090"
+ android:textColor="?headlineExcerptTextColor"
android:textSize="13sp" >
</TextView>
diff --git a/res/layout-xlarge/headlines_row_selected.xml b/res/layout-xlarge/headlines_row_selected.xml index 80dfaac2..66343703 100644 --- a/res/layout-xlarge/headlines_row_selected.xml +++ b/res/layout-xlarge/headlines_row_selected.xml @@ -63,7 +63,7 @@ android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Jan 01"
- android:textColor="#909090"
+ android:textColor="?headlineSelectedExcerptTextColor"
android:textSize="13sp" >
</TextView>
diff --git a/res/layout-xlarge/headlines_row_unread.xml b/res/layout-xlarge/headlines_row_unread.xml index 23f648a2..3e66e6ed 100644 --- a/res/layout-xlarge/headlines_row_unread.xml +++ b/res/layout-xlarge/headlines_row_unread.xml @@ -63,7 +63,7 @@ android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Jan 01"
- android:textColor="#909090"
+ android:textColor="?headlineExcerptTextColor"
android:textSize="13sp" >
</TextView>
|