2017-02-13 15:11:50 +00:00
|
|
|
<?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="wrap_content">
|
|
|
|
|
|
|
|
<LinearLayout
|
2017-02-15 21:45:31 +00:00
|
|
|
android:id="@+id/message_panel"
|
2017-02-13 15:11:50 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-12-02 18:48:21 +00:00
|
|
|
android:layout_height="wrap_content"
|
2017-11-19 19:09:08 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="12dip"
|
|
|
|
android:paddingEnd="20dip"
|
|
|
|
android:paddingStart="20dip"
|
|
|
|
android:paddingTop="12dip">
|
2017-02-13 15:11:50 +00:00
|
|
|
|
2017-11-19 19:09:08 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/message"
|
|
|
|
style="?android:attr/textAppearanceMedium"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2017-02-13 15:11:50 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-11-19 19:09:08 +00:00
|
|
|
android:padding="5dip" />
|
2017-02-13 15:11:50 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
style="?android:attr/buttonBarStyle"
|
2017-02-15 21:45:31 +00:00
|
|
|
android:id="@+id/button_panel"
|
2017-02-13 15:11:50 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="54dip"
|
|
|
|
android:measureWithLargestChild="true"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingEnd="2dip"
|
|
|
|
android:paddingStart="2dip"
|
|
|
|
android:paddingTop="4dip">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/negative"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
|
|
android:layout_width="0dip"
|
2017-12-02 18:48:21 +00:00
|
|
|
android:layout_height="match_parent"
|
2017-02-13 15:11:50 +00:00
|
|
|
android:layout_gravity="start"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:maxLines="2" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/neutral"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
|
|
android:layout_width="0dip"
|
2017-12-02 18:48:21 +00:00
|
|
|
android:layout_height="match_parent"
|
2017-02-13 15:11:50 +00:00
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:maxLines="2" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/positive"
|
|
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
|
|
android:layout_width="0dip"
|
2017-12-02 18:48:21 +00:00
|
|
|
android:layout_height="match_parent"
|
2017-02-13 15:11:50 +00:00
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:maxLines="2" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|