mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-29 10:18:12 +00:00
31 lines
1.2 KiB
XML
31 lines
1.2 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical">
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/inviteDescription"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_margin="@dimen/row_padding"
|
||
|
|
style="@style/CardTitle"/>
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/invitationWrapper"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:clickable="false"
|
||
|
|
android:layout_marginLeft="@dimen/row_padding"
|
||
|
|
android:layout_marginRight="@dimen/row_padding" />
|
||
|
|
<Button
|
||
|
|
android:id="@+id/addInviteButton"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="right"
|
||
|
|
android:text="@string/add_invites"
|
||
|
|
android:layout_margin="@dimen/row_padding" />
|
||
|
|
</LinearLayout>
|
||
|
|
</ScrollView>
|