diff options
-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> |