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"
|
2023-10-30 22:34:50 +00:00
|
|
|
android:layout_width="match_parent"
|
2020-09-10 10:01:47 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="@dimen/spacing_medium"
|
2020-09-10 10:01:47 +00:00
|
|
|
android:paddingTop="44dp"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingEnd="@dimen/spacing_medium">
|
2019-03-18 22:07:49 +00:00
|
|
|
<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"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="40dp"
|
2019-04-01 20:18:20 +00:00
|
|
|
android:paddingTop="26dp"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingEnd="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"
|
2019-04-27 15:13:50 +00:00
|
|
|
android:lineSpacingExtra="5dp"
|
2019-03-18 22:07:49 +00:00
|
|
|
android:paddingTop="16dp"
|
|
|
|
|
android:text="@string/no_notifications_text" />
|
|
|
|
|
</LinearLayout>
|
2019-04-01 20:18:20 +00:00
|
|
|
</LinearLayout>
|