mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
23 lines
760 B
XML
23 lines
760 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
||
|
<android.support.v7.widget.AppCompatImageView
|
||
|
android:id="@+id/image_view"
|
||
|
android:layout_width="128dp"
|
||
|
android:layout_height="128dp"
|
||
|
android:layout_centerHorizontal="true"/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/text_label"
|
||
|
style="@style/TextAppearance.Medium.Body2.Hint"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_below="@+id/image_view"
|
||
|
android:layout_centerHorizontal="true"/>
|
||
|
|
||
|
</RelativeLayout>
|