2018-02-01 18:35:26 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-10-10 17:57:05 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-02-01 18:35:26 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:orientation="vertical"
|
2019-10-10 17:57:05 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/confetti_container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/dialog_wrapper"
|
|
|
|
|
android:orientation="vertical"
|
2019-05-17 17:30:05 +00:00
|
|
|
android:layout_width="320dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-04 16:17:34 +00:00
|
|
|
tools:background="@android:color/black"
|
2019-05-17 17:30:05 +00:00
|
|
|
android:minWidth="300dp"
|
|
|
|
|
android:gravity="center_horizontal"
|
2019-05-21 15:04:03 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:paddingTop="@dimen/spacing_medium"
|
2019-10-10 17:57:05 +00:00
|
|
|
android:paddingBottom="@dimen/spacing_medium"
|
|
|
|
|
android:layout_centerInParent="true">
|
2019-05-17 17:30:05 +00:00
|
|
|
<LinearLayout
|
2019-05-22 13:09:09 +00:00
|
|
|
android:id="@+id/dialog_container"
|
2019-05-17 17:30:05 +00:00
|
|
|
android:minWidth="300dp"
|
|
|
|
|
android:layout_width="320dp"
|
2018-02-01 18:35:26 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-05-17 17:30:05 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:background="@drawable/alert_dialog_background"
|
2019-05-20 12:25:48 +00:00
|
|
|
android:paddingBottom="24dp"
|
2019-05-21 15:04:03 +00:00
|
|
|
android:paddingTop="40dp"
|
2019-05-17 17:30:05 +00:00
|
|
|
android:gravity="center_horizontal">
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/titleTextView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:paddingBottom="@dimen/spacing_large"
|
|
|
|
|
tools:text="This is the title"
|
2019-05-21 10:28:16 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
|
tools:visibility="visible"
|
2019-05-21 15:04:03 +00:00
|
|
|
android:layout_marginStart="@dimen/alert_side_padding"
|
|
|
|
|
android:layout_marginEnd="@dimen/alert_side_padding"
|
2019-08-28 17:05:41 +00:00
|
|
|
style="@style/Headline6"
|
2019-05-17 17:30:05 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/messageTextView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
tools:visibility="visible"
|
|
|
|
|
tools:text="This is the message"
|
2019-06-05 09:37:18 +00:00
|
|
|
android:paddingBottom="@dimen/spacing_medium"
|
|
|
|
|
android:paddingStart="@dimen/alert_side_padding"
|
|
|
|
|
android:paddingEnd="@dimen/alert_side_padding"
|
2019-08-28 17:05:41 +00:00
|
|
|
android:textColor="?textColorSecondary"
|
2020-02-13 10:55:38 +00:00
|
|
|
android:scrollbars = "vertical"
|
2019-08-28 17:05:41 +00:00
|
|
|
style="@style/Body2"
|
2019-05-17 17:30:05 +00:00
|
|
|
/>
|
2020-09-17 11:23:27 +00:00
|
|
|
<com.habitrpg.android.habitica.ui.views.login.LockableScrollView
|
|
|
|
|
android:id="@+id/main_scroll_view"
|
2019-05-21 15:04:03 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="0dp"
|
2019-05-22 13:09:09 +00:00
|
|
|
android:layout_weight="1">
|
|
|
|
|
<FrameLayout
|
|
|
|
|
android:id="@+id/content_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:paddingStart="@dimen/alert_side_padding"
|
|
|
|
|
android:paddingEnd="@dimen/alert_side_padding"/>
|
2020-09-17 11:23:27 +00:00
|
|
|
</com.habitrpg.android.habitica.ui.views.login.LockableScrollView>
|
2019-05-22 13:09:09 +00:00
|
|
|
<View
|
|
|
|
|
android:id="@+id/scrolling_separator"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@color/offset_background"
|
2019-05-22 15:54:01 +00:00
|
|
|
android:visibility="gone"/>
|
2019-05-17 17:30:05 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/buttons_wrapper"
|
2019-05-22 13:09:09 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-05-17 17:30:05 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-05-22 13:09:09 +00:00
|
|
|
android:paddingTop="20dp"
|
2019-05-17 17:30:05 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:divider="@drawable/alert_dialog_button_divider"
|
2019-05-21 15:04:03 +00:00
|
|
|
android:showDividers="middle"
|
2019-05-22 13:09:09 +00:00
|
|
|
android:paddingStart="@dimen/alert_side_padding"
|
|
|
|
|
android:paddingEnd="@dimen/alert_side_padding"/>
|
2019-05-21 15:04:03 +00:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/notice_text_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="@dimen/alert_side_padding"
|
|
|
|
|
android:layout_marginEnd="@dimen/alert_side_padding"
|
|
|
|
|
android:paddingTop="@dimen/spacing_medium"
|
|
|
|
|
android:paddingBottom="@dimen/spacing_medium"
|
|
|
|
|
android:paddingStart="@dimen/spacing_large"
|
|
|
|
|
android:paddingEnd="@dimen/spacing_large"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:background="@drawable/layout_rounded_bg_window"
|
2019-05-21 15:04:03 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
style="@style/Caption3"
|
2020-09-04 16:17:34 +00:00
|
|
|
android:textColor="@color/text_secondary"
|
2019-05-21 15:04:03 +00:00
|
|
|
tools:text="This is a small label"
|
|
|
|
|
tools:visibility="visible"/>
|
2019-05-17 17:30:05 +00:00
|
|
|
</LinearLayout>
|
2020-09-22 14:10:15 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
2019-05-17 17:30:05 +00:00
|
|
|
android:id="@+id/close_button"
|
2018-02-01 18:35:26 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2019-05-17 17:30:05 +00:00
|
|
|
android:text="@string/close"
|
|
|
|
|
android:background="@drawable/alert_dialog_background"
|
2020-09-22 14:10:15 +00:00
|
|
|
android:backgroundTint="@color/content_background"
|
2019-05-17 17:30:05 +00:00
|
|
|
android:layout_marginTop="@dimen/spacing_large"
|
2018-02-01 18:35:26 +00:00
|
|
|
android:visibility="gone"
|
2019-05-17 17:30:05 +00:00
|
|
|
tools:visibility="visible"
|
|
|
|
|
android:textSize="16sp"
|
2019-08-28 17:05:41 +00:00
|
|
|
android:textAllCaps="false"
|
|
|
|
|
android:textColor="?colorAccent"
|
|
|
|
|
/>
|
2019-05-17 17:30:05 +00:00
|
|
|
</LinearLayout>
|
2019-10-10 17:57:05 +00:00
|
|
|
</RelativeLayout>
|