2016-04-19 17:08:37 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-03-05 09:38:37 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.HabiticaScrollView
|
2025-01-30 10:29:45 +00:00
|
|
|
android:id="@+id/nested_scroll_view"
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-04-19 17:08:37 +00:00
|
|
|
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"/>
|
2016-08-12 13:09:31 +00:00
|
|
|
|
2016-04-19 17:08:37 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/invitationWrapper"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:clickable="false"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="@dimen/row_padding"
|
|
|
|
|
android:layout_marginEnd="@dimen/row_padding" />
|
2016-08-12 13:09:31 +00:00
|
|
|
|
2016-04-19 17:08:37 +00:00
|
|
|
<Button
|
|
|
|
|
android:id="@+id/addInviteButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_gravity="end"
|
2016-04-19 17:08:37 +00:00
|
|
|
android:text="@string/add_invites"
|
|
|
|
|
android:layout_margin="@dimen/row_padding" />
|
|
|
|
|
</LinearLayout>
|
2025-03-05 09:38:37 +00:00
|
|
|
</com.habitrpg.android.habitica.ui.views.HabiticaScrollView>
|