Added item divider to alarm item layout
This commit is contained in:
parent
20b5ff2d8a
commit
d17f514bd3
@ -1,13 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:background="?selectableItemBackground">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingTop="@dimen/item_padding_top"
|
||||
android:paddingStart="@dimen/item_padding_start"
|
||||
android:paddingEnd="@dimen/item_padding_end"
|
||||
android:paddingBottom="@dimen/item_padding_bottom"
|
||||
android:background="?selectableItemBackground">
|
||||
android:paddingEnd="@dimen/item_padding_end">
|
||||
|
||||
<RelativeLayout
|
||||
android:id="@+id/time_layout"
|
||||
@ -68,4 +72,12 @@
|
||||
android:text="@string/dismiss_now"
|
||||
style="@style/Widget.AppCompat.Button.Colored"/>
|
||||
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="?android:listDivider"
|
||||
android:layout_marginTop="@dimen/item_margin_between_elements"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user