2019-04-01 20:18:20 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-05-19 17:31:28 +00:00
|
|
|
android:background="@color/white"
|
2019-04-01 20:18:20 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingLeft="20dp"
|
2019-05-19 17:31:28 +00:00
|
|
|
android:paddingTop="10dp"
|
2019-04-01 20:18:20 +00:00
|
|
|
android:paddingRight="20dp">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingTop="@dimen/spacing_medium">
|
|
|
|
|
|
|
|
|
|
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:id="@android:id/title"
|
|
|
|
|
style="@style/Body1"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginBottom="16dip"
|
|
|
|
|
android:background="@color/transparent"
|
|
|
|
|
android:text="@string/notifications"
|
|
|
|
|
android:textAllCaps="true"
|
|
|
|
|
android:textColor="@color/gray_300"
|
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
2019-04-08 07:35:46 +00:00
|
|
|
android:id="@+id/notifications_title_badge"
|
2019-04-01 20:18:20 +00:00
|
|
|
android:layout_width="wrap_content"
|
2019-04-17 05:31:34 +00:00
|
|
|
android:layout_height="24dp"
|
2019-04-01 20:18:20 +00:00
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
|
android:background="@drawable/badge_gray"
|
2019-04-17 05:31:34 +00:00
|
|
|
android:gravity="center"
|
|
|
|
|
android:minWidth="24dp"
|
2019-04-01 20:18:20 +00:00
|
|
|
android:textColor="@color/gray_300"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
tools:text="1" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<Button
|
2019-04-08 07:35:46 +00:00
|
|
|
android:id="@+id/dismiss_all_button"
|
2019-04-01 20:18:20 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="@color/transparent"
|
|
|
|
|
android:text="@string/dismiss_all"
|
2019-08-07 08:29:58 +00:00
|
|
|
android:textColor="?colorAccent" />
|
2019-04-01 20:18:20 +00:00
|
|
|
|
|
|
|
|
</LinearLayout>
|