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

22 lines
825 B
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-23 10:49:59 +00:00
android:orientation="horizontal"
2021-02-04 17:21:04 +00:00
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"
2021-02-23 10:49:59 +00:00
android:padding="12dp"
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"
2021-02-04 17:21:04 +00:00
android:layout_height="wrap_content"
2021-02-23 10:49:59 +00:00
android:layout_weight="1"
style="@style/Subheader1"/>
2021-02-04 17:21:04 +00:00
</LinearLayout>