mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
26 lines
No EOL
996 B
XML
26 lines
No EOL
996 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal" android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingTop="6dp"
|
|
android:paddingBottom="6dp">
|
|
<ImageView
|
|
android:id="@+id/avatar_view"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:scaleType="fitCenter"/>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
<TextView
|
|
android:id="@+id/participant_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textStyle="bold"/>
|
|
<TextView
|
|
android:id="@+id/status_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
</LinearLayout> |