aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-06-24 17:46:43 -0700
committerScott Jackson <daneren2005@gmail.com>2015-06-24 17:46:43 -0700
commitc8db3c240d7755340f082a8b84698a95d5142c4c (patch)
tree6a780658af862f76b35d03ca9a87da6ddb35c155 /app
parentec59370dd453c2438d194610dbba2b1435ba35f8 (diff)
downloaddsub-c8db3c240d7755340f082a8b84698a95d5142c4c.tar.gz
dsub-c8db3c240d7755340f082a8b84698a95d5142c4c.tar.bz2
dsub-c8db3c240d7755340f082a8b84698a95d5142c4c.zip
Chane dividerColor to reference colorPrimary
Diffstat (limited to 'app')
-rw-r--r--app/src/main/res/layout/abstract_list_fragment.xml2
-rw-r--r--app/src/main/res/layout/abstract_recycler_fragment.xml2
-rw-r--r--app/src/main/res/layout/download_playlist.xml2
-rw-r--r--app/src/main/res/layout/home.xml2
-rw-r--r--app/src/main/res/layout/select_album.xml2
-rw-r--r--app/src/main/res/layout/select_album_header.xml2
-rw-r--r--app/src/main/res/layout/select_artist_header.xml2
-rw-r--r--app/src/main/res/layout/user_header.xml2
-rw-r--r--app/src/main/res/values/colors.xml2
9 files changed, 8 insertions, 10 deletions
diff --git a/app/src/main/res/layout/abstract_list_fragment.xml b/app/src/main/res/layout/abstract_list_fragment.xml
index 618a7341..0404350c 100644
--- a/app/src/main/res/layout/abstract_list_fragment.xml
+++ b/app/src/main/res/layout/abstract_list_fragment.xml
@@ -13,7 +13,7 @@
<View
android:layout_width="fill_parent"
android:layout_height="1px"
- android:background="@color/dividerColor"/>
+ android:background="?attr/colorPrimary"/>
<ListView
android:id="@+id/fragment_list"
diff --git a/app/src/main/res/layout/abstract_recycler_fragment.xml b/app/src/main/res/layout/abstract_recycler_fragment.xml
index 4c7dd6b8..9a64fbce 100644
--- a/app/src/main/res/layout/abstract_recycler_fragment.xml
+++ b/app/src/main/res/layout/abstract_recycler_fragment.xml
@@ -13,7 +13,7 @@
<View
android:layout_width="fill_parent"
android:layout_height="1px"
- android:background="@color/dividerColor"/>
+ android:background="?attr/colorPrimary"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/fragment_recycler"
diff --git a/app/src/main/res/layout/download_playlist.xml b/app/src/main/res/layout/download_playlist.xml
index b37b6469..7a83330c 100644
--- a/app/src/main/res/layout/download_playlist.xml
+++ b/app/src/main/res/layout/download_playlist.xml
@@ -9,7 +9,7 @@
<View
android:layout_width="fill_parent"
android:layout_height="1px"
- android:background="@color/dividerColor"/>
+ android:background="?attr/colorPrimary"/>
<TextView
android:id="@+id/download_empty"
diff --git a/app/src/main/res/layout/home.xml b/app/src/main/res/layout/home.xml
index e5bf5a70..043886a2 100644
--- a/app/src/main/res/layout/home.xml
+++ b/app/src/main/res/layout/home.xml
@@ -8,7 +8,7 @@
<View
android:layout_width="fill_parent"
android:layout_height="1px"
- android:background="@color/dividerColor"/>
+ android:background="?attr/colorPrimary"/>
<ListView
android:id="@+id/main_list"
diff --git a/app/src/main/res/layout/select_album.xml b/app/src/main/res/layout/select_album.xml
index cacbc560..e72ccffd 100644
--- a/app/src/main/res/layout/select_album.xml
+++ b/app/src/main/res/layout/select_album.xml
@@ -13,7 +13,7 @@
<View
android:layout_width="fill_parent"
android:layout_height="1px"
- android:background="@color/dividerColor"/>
+ android:background="?attr/colorPrimary"/>
<include layout="@layout/tab_progress"/>
diff --git a/app/src/main/res/layout/select_album_header.xml b/app/src/main/res/layout/select_album_header.xml
index 6d5795e6..5b2294f0 100644
--- a/app/src/main/res/layout/select_album_header.xml
+++ b/app/src/main/res/layout/select_album_header.xml
@@ -157,7 +157,7 @@
<View
android:layout_width="fill_parent"
android:layout_height="1px"
- android:background="@color/dividerColor"
+ android:background="?attr/colorPrimary"
android:layout_gravity="bottom"/>
</FrameLayout>
diff --git a/app/src/main/res/layout/select_artist_header.xml b/app/src/main/res/layout/select_artist_header.xml
index 47e42694..9ec94ff1 100644
--- a/app/src/main/res/layout/select_artist_header.xml
+++ b/app/src/main/res/layout/select_artist_header.xml
@@ -48,5 +48,5 @@
<View
android:layout_width="fill_parent"
android:layout_height="1px"
- android:background="@color/dividerColor"/>
+ android:background="?attr/colorPrimary"/>
</LinearLayout> \ No newline at end of file
diff --git a/app/src/main/res/layout/user_header.xml b/app/src/main/res/layout/user_header.xml
index 04f5285d..c8186372 100644
--- a/app/src/main/res/layout/user_header.xml
+++ b/app/src/main/res/layout/user_header.xml
@@ -58,7 +58,7 @@
<View
android:layout_width="fill_parent"
android:layout_height="1px"
- android:background="@color/dividerColor"
+ android:background="?attr/colorPrimary"
android:layout_alignParentBottom="true"/>
</RelativeLayout>
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index d3f9bcb2..e35d0311 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -1,11 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
- <color name="dividerColor">#FF33B5E5</color>
<color name="appwidget_text">#FFFFFF</color>
<color name="notificationArtist">#434343</color>
<color name="notificationTitle">#000000</color>
<color name="overlayColor">#80000000</color>
- <color name="cyan">#ff0099cc</color>
<color name="holo_blue_light">#ff33b5e5</color>
<color name="holo_orange_light">#ffffbb33</color>