mihon/app/src/main/res/layout/common_view_empty.xml

31 lines
1.0 KiB
XML
Raw Normal View History

2016-05-13 15:45:36 +02:00
<?xml version="1.0" encoding="utf-8"?>
2020-02-22 00:43:50 +01:00
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2016-05-13 15:45:36 +02:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2020-03-09 23:59:17 +01:00
xmlns:tools="http://schemas.android.com/tools"
2020-02-22 00:43:50 +01:00
android:layout_gravity="center">
2016-05-13 15:45:36 +02:00
2020-03-09 23:59:17 +01:00
<TextView
android:id="@+id/text_face"
style="@style/TextAppearance.Medium.Body2.Hint"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_margin="16dp"
android:gravity="center"
android:textSize="48sp"
tools:text="-_-" />
2016-05-13 15:45:36 +02:00
<TextView
android:id="@+id/text_label"
style="@style/TextAppearance.Medium.Body2.Hint"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2020-03-09 23:59:17 +01:00
android:layout_below="@+id/text_face"
2020-02-22 00:43:50 +01:00
android:layout_centerHorizontal="true"
android:layout_margin="16dp"
2020-03-09 23:59:17 +01:00
android:gravity="center"
tools:text="Label" />
2016-05-13 15:45:36 +02:00
</RelativeLayout>