18 lines
646 B
XML
18 lines
646 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
tools:ignore="MissingDefaultResource">
|
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
android:id="@+id/avatar"
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"
|
|
android:src="@mipmap/icon_data_empty"
|
|
app:riv_oval="true" />
|
|
|
|
</LinearLayout> |