123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/linear"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="320dp"
- android:layout_height="150dp"
- android:layout_gravity="center"
- android:background="@drawable/jmdialog"
- android:gravity="center"
- android:orientation="vertical" >
- <TextView
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:gravity="center"
- android:text="@string/exit_title"
- android:textColor="@color/jmfont_black"
- android:textSize="16sp" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_marginTop="30dp"
- android:gravity="center"
- android:orientation="horizontal" >
- <Button
- android:id="@+id/dialog_cancel"
- android:layout_width="140dp"
- android:layout_height="35dp"
- android:textAllCaps="false"
- android:background="@drawable/jm_red_codebtn_style"
- android:gravity="center"
- android:text="@string/exit_no"
- android:textColor="@color/jmfont_white"
- android:textSize="15sp" />
- <Button
- android:id="@+id/dialog_exit"
- android:layout_width="140dp"
- android:layout_height="35dp"
- android:layout_marginLeft="15dp"
- android:textAllCaps="false"
- android:background="@drawable/jm_red_light_codebtn_style"
- android:gravity="center"
- android:text="@string/exit_yes"
- android:textColor="@color/jmfont_white"
- android:textSize="15sp" />
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|