habitica-android/Habitica/res/layout/item_user_guild.xml

35 lines
1.2 KiB
XML
Raw Normal View History

2021-02-04 17:21:04 +00:00
<?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"
android:orientation="vertical"
android:layout_marginHorizontal="10dp"
android:layout_marginVertical="10dp"
android:background="@drawable/layout_rounded_bg_window"
android:padding="12dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center">
<ImageView
android:id="@+id/guild_badge_view"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginEnd="12dp" />
<TextView
android:id="@+id/title_text_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
style="@style/RowTitle"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:src="@drawable/ic_keyboard_arrow_right"/>
</LinearLayout>
</LinearLayout>