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

29 lines
1.1 KiB
XML
Raw Normal View History

2021-02-04 17:21:04 +00:00
<?xml version="1.0" encoding="utf-8"?>
2021-02-10 17:51:26 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2021-02-04 17:21:04 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2021-02-10 17:51:26 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2021-02-04 17:21:04 +00:00
android:orientation="vertical"
android:layout_marginHorizontal="10dp"
2021-02-10 17:51:26 +00:00
android:layout_marginVertical="4dp"
2021-02-04 17:21:04 +00:00
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"
2021-02-10 17:51:26 +00:00
style="@style/Subheader1"/>
2021-02-04 17:21:04 +00:00
</LinearLayout>
</LinearLayout>