aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/abstract_fragment_activity.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-06-22 18:16:31 -0700
committerScott Jackson <daneren2005@gmail.com>2015-06-22 18:16:31 -0700
commitec59370dd453c2438d194610dbba2b1435ba35f8 (patch)
tree3fc6ba3132a15ef541f17d3ddd85c79cee710118 /app/src/main/res/layout/abstract_fragment_activity.xml
parent44faeb4cc59d69df0c633d04c76d3a94c4fac2aa (diff)
downloaddsub-ec59370dd453c2438d194610dbba2b1435ba35f8.tar.gz
dsub-ec59370dd453c2438d194610dbba2b1435ba35f8.tar.bz2
dsub-ec59370dd453c2438d194610dbba2b1435ba35f8.zip
Theme update
Diffstat (limited to 'app/src/main/res/layout/abstract_fragment_activity.xml')
-rw-r--r--app/src/main/res/layout/abstract_fragment_activity.xml27
1 files changed, 14 insertions, 13 deletions
diff --git a/app/src/main/res/layout/abstract_fragment_activity.xml b/app/src/main/res/layout/abstract_fragment_activity.xml
index 74a94111..bf8d9640 100644
--- a/app/src/main/res/layout/abstract_fragment_activity.xml
+++ b/app/src/main/res/layout/abstract_fragment_activity.xml
@@ -1,6 +1,7 @@
<com.sothree.slidinguppanel.SlidingUpPanelLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:sothree="http://schemas.android.com/apk/res-auto"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/slide_up_panel"
android:layout_width="match_parent"
android:layout_height="match_parent"
@@ -18,7 +19,9 @@
android:layout_height="?attr/actionBarSize"
android:layout_width="match_parent"
android:background="?attr/colorPrimary"
- android:elevation="4dp"/>
+ android:elevation="4dp"
+ android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
+ app:popupTheme="?attr/actionbarPopupStyle"/>
<include layout="@layout/abstract_fragment_container"/>
</FrameLayout>
@@ -39,7 +42,9 @@
android:layout_height="?attr/actionBarSize"
android:layout_width="match_parent"
android:elevation="4dp"
- android:visibility="gone"/>
+ android:visibility="gone"
+ app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
+ app:popupTheme="?attr/actionbarPopupStyle"/>
<LinearLayout
android:id="@+id/bottom_bar"
@@ -68,16 +73,14 @@
android:id="@+id/track_name"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
- android:textColor="?android:textColorPrimary"
android:singleLine="true"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:textSize="@dimen/BottomBar.Text.Major"
android:text="@string/main.title"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
- android:focusableInTouchMode="true">
+ android:focusableInTouchMode="true"
+ style="?attr/actionbarTitleStyle">
<requestFocus android:focusable="true"
android:focusableInTouchMode="true"
@@ -88,11 +91,9 @@
android:id="@+id/artist_name"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
- android:textColor="?android:textColorSecondary"
android:singleLine="true"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:textSize="@dimen/BottomBar.Text.Minor"
- android:text="@string/main.artist"/>
+ android:text="@string/main.artist"
+ style="?attr/actionbarSubtitleStyle"/>
</LinearLayout>
@@ -104,21 +105,21 @@
<ImageButton
style="@style/PlaybackControl.Match"
android:id="@+id/download_previous"
- android:src="?attr/media_button_backward"
+ android:src="?attr/actionbar_backward"
android:layout_width="0dp"
android:layout_weight="1"/>
<ImageButton
style="@style/PlaybackControl.Match"
android:id="@+id/download_start"
- android:src="?attr/media_button_start"
+ android:src="?attr/actionbar_start"
android:layout_width="0dp"
android:layout_weight="1"/>
<ImageButton
style="@style/PlaybackControl.Match"
android:id="@+id/download_next"
- android:src="?attr/media_button_forward"
+ android:src="?attr/actionbar_forward"
android:layout_width="0dp"
android:layout_weight="1"/>
</LinearLayout>