summaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2013-01-20 00:02:29 +0100
committerdaniel oeh <daniel.oeh@gmail.com>2013-01-20 00:02:29 +0100
commit7113656a0d0430ff5fa7fe3a4af3f7ef5074c310 (patch)
tree1c06c0042ac7f8b64807d64a3d78fe2533e1836c /res/layout
parentdaea0d4e30ec9d55ab378cb99390428101a58669 (diff)
downloadAntennaPod-7113656a0d0430ff5fa7fe3a4af3f7ef5074c310.zip
Use standard text colors
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/downloadlog_item.xml2
-rw-r--r--res/layout/external_player_fragment.xml2
-rw-r--r--res/layout/feeditemlist_item.xml2
-rw-r--r--res/layout/feeditemview.xml2
-rw-r--r--res/layout/feedlist_item.xml9
-rw-r--r--res/layout/feedlist_item_grid.xml4
-rw-r--r--res/layout/mediaplayer_activity.xml2
-rw-r--r--res/layout/miroguide_itemlist_item.xml2
-rw-r--r--res/layout/player_widget.xml2
-rw-r--r--res/layout/searchlist_item.xml2
-rw-r--r--res/layout/simplechapter_item.xml2
11 files changed, 17 insertions, 14 deletions
diff --git a/res/layout/downloadlog_item.xml b/res/layout/downloadlog_item.xml
index 4b2ef3731..7720888c6 100644
--- a/res/layout/downloadlog_item.xml
+++ b/res/layout/downloadlog_item.xml
@@ -18,7 +18,7 @@
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginRight="8dp"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorSecondary" />
<TextView
android:id="@+id/txtvTitle"
diff --git a/res/layout/external_player_fragment.xml b/res/layout/external_player_fragment.xml
index 89566366e..d777fc8b7 100644
--- a/res/layout/external_player_fragment.xml
+++ b/res/layout/external_player_fragment.xml
@@ -70,7 +70,7 @@
android:layout_toRightOf="@id/txtvPosition"
android:ellipsize="end"
android:maxLines="1"
- android:textColor="@color/gray"
+ android:textColor="?android:attr/textColorSecondary"
android:textSize="@dimen/text_size_micro" />
</RelativeLayout>
diff --git a/res/layout/feeditemlist_item.xml b/res/layout/feeditemlist_item.xml
index 198e33f94..8058aafeb 100644
--- a/res/layout/feeditemlist_item.xml
+++ b/res/layout/feeditemlist_item.xml
@@ -41,7 +41,7 @@
android:layout_below="@id/txtvFeedname"
android:layout_marginBottom="4dp"
android:layout_toLeftOf="@id/butAction"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorSecondary" />
<ImageView
android:id="@+id/imgvType"
diff --git a/res/layout/feeditemview.xml b/res/layout/feeditemview.xml
index 017fc2030..a7723613f 100644
--- a/res/layout/feeditemview.xml
+++ b/res/layout/feeditemview.xml
@@ -23,7 +23,7 @@
android:layout_marginBottom="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
- android:textColor="@color/gray"
+ android:textColor="?android:attr/textColorSecondary"
android:textStyle="italic" />
<View
diff --git a/res/layout/feedlist_item.xml b/res/layout/feedlist_item.xml
index c9ab50c8a..7ec1b0a79 100644
--- a/res/layout/feedlist_item.xml
+++ b/res/layout/feedlist_item.xml
@@ -81,19 +81,22 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="2"
- android:textStyle="bold" />
+ android:textColor="?android:attr/textColorPrimary"
+ android:textSize="@dimen/text_size_small" />
<TextView
android:id="@+id/txtvNumEpisodes"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorSecondary"
+ android:textSize="@dimen/text_size_micro" />
<TextView
android:id="@+id/txtvLastUpdate"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorSecondary"
+ android:textSize="@dimen/text_size_micro" />
</LinearLayout>
</RelativeLayout> \ No newline at end of file
diff --git a/res/layout/feedlist_item_grid.xml b/res/layout/feedlist_item_grid.xml
index dfe15c6f7..75e820a43 100644
--- a/res/layout/feedlist_item_grid.xml
+++ b/res/layout/feedlist_item_grid.xml
@@ -88,7 +88,7 @@
android:id="@+id/txtvLastUpdate"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorSecondary" />
<TextView
android:id="@+id/txtvNumEpisodes"
@@ -96,7 +96,7 @@
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginRight="8dp"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorSecondary" />
</LinearLayout>
</RelativeLayout> \ No newline at end of file
diff --git a/res/layout/mediaplayer_activity.xml b/res/layout/mediaplayer_activity.xml
index e9e62bd3e..356ee1cc1 100644
--- a/res/layout/mediaplayer_activity.xml
+++ b/res/layout/mediaplayer_activity.xml
@@ -107,7 +107,7 @@
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorTertiary" />
</RelativeLayout>
<android.support.v4.view.ViewPager
diff --git a/res/layout/miroguide_itemlist_item.xml b/res/layout/miroguide_itemlist_item.xml
index 95eb9b6ad..4fe863f00 100644
--- a/res/layout/miroguide_itemlist_item.xml
+++ b/res/layout/miroguide_itemlist_item.xml
@@ -20,6 +20,6 @@
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorSecondary" />
</LinearLayout> \ No newline at end of file
diff --git a/res/layout/player_widget.xml b/res/layout/player_widget.xml
index 4cf4f0da6..9866da449 100644
--- a/res/layout/player_widget.xml
+++ b/res/layout/player_widget.xml
@@ -44,7 +44,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="8dp"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorSecondary" />
</LinearLayout>
</RelativeLayout>
diff --git a/res/layout/searchlist_item.xml b/res/layout/searchlist_item.xml
index 13ad5d883..71c09c16d 100644
--- a/res/layout/searchlist_item.xml
+++ b/res/layout/searchlist_item.xml
@@ -33,7 +33,7 @@
android:id="@+id/txtvSubtitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorSecondary" />
</LinearLayout>
</RelativeLayout> \ No newline at end of file
diff --git a/res/layout/simplechapter_item.xml b/res/layout/simplechapter_item.xml
index 6a2a6bef8..99ba0b0a9 100644
--- a/res/layout/simplechapter_item.xml
+++ b/res/layout/simplechapter_item.xml
@@ -11,7 +11,7 @@
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_margin="8dp"
- android:textColor="@color/gray" />
+ android:textColor="?android:attr/textColorSecondary" />
<TextView
android:id="@+id/txtvTitle"