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

45 lines
1.6 KiB
XML
Raw Normal View History

2016-03-05 13:54:19 +00:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
2016-03-06 15:49:35 +00:00
android:layout_height="wrap_content"
android:orientation="vertical"
2021-02-04 17:21:04 +00:00
android:layout_marginHorizontal="10dp"
android:layout_marginVertical="10dp"
android:background="@drawable/layout_rounded_bg_window"
android:padding="12dp">
2016-03-05 13:54:19 +00:00
2021-02-04 17:21:04 +00:00
<TextView
android:id="@+id/nameTextView"
style="@style/RowTitle"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<TextView
android:id="@+id/descriptionTextView"
android:layout_width="match_parent"
android:layout_height="match_parent"
style="@style/Caption2"
android:textColor="@color/text_ternary"/>
2016-03-05 13:54:19 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2021-02-04 17:21:04 +00:00
android:orientation="horizontal"
android:gravity="center">
<Space
2016-03-05 13:54:19 +00:00
android:layout_width="0dp"
2021-02-04 17:21:04 +00:00
android:layout_weight="1"
android:layout_height="wrap_content" />
<ImageView
android:id="@+id/guild_badge_view"
android:layout_width="wrap_content"
2016-03-05 13:54:19 +00:00
android:layout_height="wrap_content"
2021-02-04 17:21:04 +00:00
android:layout_marginEnd="@dimen/spacing_small"/>
2016-03-05 13:54:19 +00:00
<TextView
android:id="@+id/memberCountTextView"
style="@style/RowText"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
2016-03-05 13:54:19 +00:00
</LinearLayout>
</LinearLayout>