mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-27 03:55:25 +00:00
3948e67c8f
Close #474
62 lines
2.1 KiB
XML
62 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/dialog_layout"
|
|
android:orientation="vertical"
|
|
android:paddingTop="5dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/message"
|
|
style="?android:attr/textAppearanceMedium"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="12dp"
|
|
android:paddingEnd="25dp"
|
|
android:paddingStart="25dp"
|
|
android:paddingTop="12dp" />
|
|
|
|
<LinearLayout
|
|
style="?android:attr/buttonBarStyle"
|
|
android:id="@+id/button_panel"
|
|
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"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:layout_weight="1"
|
|
android:maxLines="2" />
|
|
|
|
<Button
|
|
android:id="@+id/neutral"
|
|
style="?android:attr/buttonBarButtonStyle"
|
|
android:layout_width="0dip"
|
|
android:layout_height="match_parent"
|
|
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"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="end"
|
|
android:layout_weight="1"
|
|
android:maxLines="2" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |