diff options
author | Scott Jackson <daneren2005@gmail.com> | 2015-06-09 17:39:52 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2015-06-09 17:39:52 -0700 |
commit | f801bb2df9fddd0a550adf767e33fa497e7dc050 (patch) | |
tree | d4afd52b3847d594a2c905283feae34cdaba2425 /app | |
parent | 2d1a783bdc5679a770748d3330aad42e48f2157d (diff) | |
download | dsub-f801bb2df9fddd0a550adf767e33fa497e7dc050.tar.gz dsub-f801bb2df9fddd0a550adf767e33fa497e7dc050.tar.bz2 dsub-f801bb2df9fddd0a550adf767e33fa497e7dc050.zip |
Add divider for headers
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/layout/select_album_header.xml | 6 | ||||
-rw-r--r-- | app/src/main/res/layout/select_artist_header.xml | 5 | ||||
-rw-r--r-- | app/src/main/res/layout/user_header.xml | 6 |
3 files changed, 17 insertions, 0 deletions
diff --git a/app/src/main/res/layout/select_album_header.xml b/app/src/main/res/layout/select_album_header.xml index d028a476..e3a09443 100644 --- a/app/src/main/res/layout/select_album_header.xml +++ b/app/src/main/res/layout/select_album_header.xml @@ -148,6 +148,12 @@ android:textAppearance="?android:attr/textAppearanceMedium"/> </LinearLayout> </FrameLayout> + + <View + android:layout_width="fill_parent" + android:layout_height="1px" + android:background="@color/dividerColor" + 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 0ac9e6a6..168120d9 100644 --- a/app/src/main/res/layout/select_artist_header.xml +++ b/app/src/main/res/layout/select_artist_header.xml @@ -42,4 +42,9 @@ </LinearLayout> </LinearLayout> + + <View + android:layout_width="fill_parent" + android:layout_height="1px" + android:background="@color/dividerColor"/> </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 0b303afe..a9ff4bee 100644 --- a/app/src/main/res/layout/user_header.xml +++ b/app/src/main/res/layout/user_header.xml @@ -52,6 +52,12 @@ android:autoLink="email"/> </LinearLayout> + + <View + android:layout_width="fill_parent" + android:layout_height="1px" + android:background="@color/dividerColor" + android:layout_alignParentBottom="true"/> </RelativeLayout> |