mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-15 08:10:09 +01:00
100 lines
3.7 KiB
XML
100 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/dialog_hitrect"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:minWidth="200dp"
|
|
android:gravity="center"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/dialog_title"
|
|
style="@style/titleWithIcon"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/ui_theme_richframe_bitmap"
|
|
android:drawableLeft="@drawable/char_hero"
|
|
android:gravity="center_vertical" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/dialog_description_container"
|
|
style="@style/AndorsTrail_Style_StdFrame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical"
|
|
android:paddingBottom="10dp"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:paddingTop="10dp" >
|
|
|
|
<TextView
|
|
android:id="@+id/dialog_description"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:id="@+id/dialog_content_container"
|
|
style="@style/AndorsTrail_Style_StdFrame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.8"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="5dp"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:paddingTop="5dp" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/dialog_button_container"
|
|
style="@style/AndorsTrail_Style_StdFrame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="5dp"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:paddingTop="5dp" >
|
|
|
|
<Button
|
|
android:id="@+id/dialog_template_button"
|
|
style="@style/AndorsTrail_Style_TextButton"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:id="@+id/dialog_button_container_vertical"
|
|
style="@style/AndorsTrail_Style_StdFrame"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.8"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="5dp"
|
|
android:paddingTop="5dp"
|
|
android:paddingRight="5dp"
|
|
android:paddingBottom="5dp">
|
|
|
|
<Button
|
|
android:id="@+id/dialog_template_button_vertical"
|
|
style="@style/AndorsTrail_Style_TextButton"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |