habitica-android/Habitica/res/layout/no_notifications.xml

53 lines
1.8 KiB
XML
Raw Normal View History

<?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="horizontal"
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:orientation="vertical"
android:paddingLeft="40dp"
android:paddingTop="26dp"
android:paddingRight="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:lineHeight="20dp"
android:paddingTop="16dp"
android:text="@string/no_notifications_text" />
</LinearLayout>
</LinearLayout>
</LinearLayout>