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

48 lines
1.7 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"
2018-11-20 14:17:25 +00:00
android:layout_margin="@dimen/row_padding"
android:background="?attr/selectableItemBackground">
2016-03-05 13:54:19 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
2016-03-05 13:54:19 +00:00
<TextView
android:id="@+id/nameTextView"
style="@style/RowTitle"
2016-03-05 13:54:19 +00:00
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<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
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
2016-03-05 13:54:19 +00:00
<TextView
android:id="@+id/descriptionTextView"
2016-03-05 13:54:19 +00:00
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
2018-11-20 14:17:25 +00:00
android:text="New Text ase rqwer qwer qsdfqw erasdf qwredas drfqwer asdrqw eras drqwer asdr aswer asdfaswer wer sdwe 000"
android:layout_marginBottom="20dp"/>
2016-03-05 13:54:19 +00:00
<Button
android:id="@+id/joinleaveButton"
2016-03-05 13:54:19 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Button" />
2016-03-05 13:54:19 +00:00
</LinearLayout>
</LinearLayout>