mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 18:27:18 +00:00
46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:padding="8dp">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||
|
|
android:text="Large Text"
|
||
|
|
android:id="@+id/nameTextView"
|
||
|
|
android:layout_weight="1" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
||
|
|
android:text="Small Text"
|
||
|
|
android:id="@+id/memberCountTextView" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="New Text"
|
||
|
|
android:id="@+id/descriptionTextView"
|
||
|
|
android:layout_weight="1" />
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="New Button"
|
||
|
|
android:id="@+id/joinleaveButton" />
|
||
|
|
</LinearLayout>
|
||
|
|
</LinearLayout>
|