2019-03-18 22:07:49 +00:00
|
|
|
<?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"
|
2019-04-01 20:18:20 +00:00
|
|
|
android:orientation="horizontal"
|
2019-03-18 22:07:49 +00:00
|
|
|
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"
|
2019-04-01 20:18:20 +00:00
|
|
|
android:paddingLeft="40dp"
|
|
|
|
|
android:paddingTop="26dp"
|
|
|
|
|
android:paddingRight="40dp">
|
2019-03-18 22:07:49 +00:00
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
2019-04-01 20:18:20 +00:00
|
|
|
</LinearLayout>
|