32 lines
967 B
XML
32 lines
967 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="match_parent"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<de.hdodenhof.circleimageview.CircleImageView
|
|
android:layout_width="120dp"
|
|
android:layout_height="120dp"
|
|
android:id="@+id/status_image"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_above="@+id/textView"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/textView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="10dp"
|
|
android:textSize="25dp"
|
|
android:textAlignment="center"
|
|
android:gravity="center_horizontal" />
|
|
|
|
|
|
|
|
</RelativeLayout> |