<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:orientation="horizontal"
|
android:padding="8dp">
|
|
<com.google.android.material.imageview.ShapeableImageView
|
android:id="@+id/avatarImageView"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_marginLeft="10dp"
|
android:scaleType="centerCrop"
|
|
app:shapeAppearance="@style/CircleImage"
|
/>
|
|
<TextView
|
android:id="@+id/nameTextView"
|
android:layout_width="wrap_content"
|
android:layout_height="30dp"
|
android:layout_marginLeft="10dp"
|
android:gravity="center_vertical"
|
android:minWidth="100dp"
|
android:text="Name" />
|
|
<TextView
|
android:id="@+id/statusTextView"
|
android:layout_width="wrap_content"
|
android:layout_height="30dp"
|
android:layout_marginLeft="50dp"
|
android:gravity="center_vertical"
|
android:text="Status" />
|
</LinearLayout>
|