mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 08:40:00 +00:00
51 lines
1.8 KiB
XML
51 lines
1.8 KiB
XML
|
|
<?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"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:paddingLeft="20dp"
|
||
|
|
android:paddingTop="14dp"
|
||
|
|
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
|
||
|
|
android:id="@+id/notificationsTitleBadge"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginLeft="10dp"
|
||
|
|
android:background="@drawable/badge_gray"
|
||
|
|
android:textColor="@color/gray_300"
|
||
|
|
android:textSize="12sp"
|
||
|
|
tools:text="1" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/dismissAllButton"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@color/transparent"
|
||
|
|
android:text="@string/dismiss_all"
|
||
|
|
android:textColor="@color/brand_400" />
|
||
|
|
|
||
|
|
</LinearLayout>
|