mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-27 17:33:22 +00:00
53 lines
1.9 KiB
XML
53 lines
1.9 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:padding="@dimen/spacing_large">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:paddingLeft="@dimen/spacing_medium"
|
||
|
|
android:paddingTop="44dp"
|
||
|
|
android:paddingRight="@dimen/spacing_medium">
|
||
|
|
|
||
|
|
<ImageView
|
||
|
|
android:id="@+id/noNotifications"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@color/transparent"
|
||
|
|
android:clickable="false"
|
||
|
|
android:gravity="center"
|
||
|
|
android:src="@drawable/no_notifications" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:paddingLeft="40dp"
|
||
|
|
android:paddingRight="40dp"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:paddingTop="26dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
style="@style/SectionTitle"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="@string/no_notifications_title" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:gravity="center"
|
||
|
|
android:lineHeight="20dp"
|
||
|
|
android:paddingTop="16dp"
|
||
|
|
android:text="@string/no_notifications_text" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
</LinearLayout>
|