|
@@ -0,0 +1,87 @@
|
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
+ android:id="@+id/parentPanel"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:background="?attr/skinAlertDialogBackground"
|
|
|
|
|
+ android:gravity="start|left|top"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <include layout="@layout/skin_alert_dialog_title" />
|
|
|
|
|
+
|
|
|
|
|
+ <FrameLayout
|
|
|
|
|
+ android:id="@+id/contentPanel"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:minHeight="48dp">
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:id="@+id/scrollIndicatorUp"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="1dp"
|
|
|
|
|
+ android:layout_gravity="top"
|
|
|
|
|
+ android:background="?attr/skinAlertDialogControlHighlightColor"
|
|
|
|
|
+ android:visibility="gone" />
|
|
|
|
|
+
|
|
|
|
|
+ <android.support.v4.widget.NestedScrollView
|
|
|
|
|
+ android:id="@+id/scrollView"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:clipToPadding="false">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
|
+
|
|
|
|
|
+ <android.support.v4.widget.Space
|
|
|
|
|
+ android:id="@+id/textSpacerNoTitle"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="@dimen/abc_dialog_padding_top_material"
|
|
|
|
|
+ android:visibility="gone" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@android:id/message"
|
|
|
|
|
+ style="@style/TextAppearance.AppCompat.Subhead"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:paddingLeft="?attr/dialogPreferredPadding"
|
|
|
|
|
+ android:paddingRight="?attr/dialogPreferredPadding"
|
|
|
|
|
+ android:textColor="?attr/skinAlertDialogMessageTextColor" />
|
|
|
|
|
+
|
|
|
|
|
+ <android.support.v4.widget.Space
|
|
|
|
|
+ android:id="@+id/textSpacerNoButtons"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="@dimen/skin_dialog_padding_top"
|
|
|
|
|
+ android:visibility="gone" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+ </android.support.v4.widget.NestedScrollView>
|
|
|
|
|
+
|
|
|
|
|
+ <View
|
|
|
|
|
+ android:id="@+id/scrollIndicatorDown"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="1dp"
|
|
|
|
|
+ android:layout_gravity="bottom"
|
|
|
|
|
+ android:background="?attr/skinAlertDialogControlHighlightColor"
|
|
|
|
|
+ android:visibility="gone" />
|
|
|
|
|
+
|
|
|
|
|
+ </FrameLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <FrameLayout
|
|
|
|
|
+ android:id="@+id/customPanel"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:minHeight="48dp">
|
|
|
|
|
+
|
|
|
|
|
+ <FrameLayout
|
|
|
|
|
+ android:id="@+id/custom"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
|
|
+ </FrameLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <include
|
|
|
|
|
+ layout="@layout/skin_alert_dialog_button_bar"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content" />
|
|
|
|
|
+
|
|
|
|
|
+</LinearLayout>
|