mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
40 lines
1.5 KiB
XML
40 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingStart="@dimen/spacing_medium"
|
|
android:paddingTop="44dp"
|
|
android:paddingEnd="@dimen/spacing_medium">
|
|
<ImageView
|
|
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:orientation="vertical"
|
|
android:paddingStart="40dp"
|
|
android:paddingTop="26dp"
|
|
android:paddingEnd="40dp">
|
|
|
|
<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:lineSpacingExtra="5dp"
|
|
android:paddingTop="16dp"
|
|
android:text="@string/no_notifications_text" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|