31 lines
934 B
XML
31 lines
934 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="110dp"
|
|
android:gravity="center"
|
|
android:id="@+id/relative">
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
android:layout_centerHorizontal="true"
|
|
android:src="@mipmap/ic_launcher" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/image"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginStart="2dp"
|
|
android:layout_marginTop="6dp"
|
|
android:layout_marginEnd="2dp"
|
|
android:gravity="center"
|
|
android:textColor="@color/black"
|
|
android:textSize="16sp" />
|
|
</RelativeLayout>
|