123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?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="@color/jmfont_white"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="55dp"
- android:gravity="center"
- android:text="@string/exit_title_tip"
- android:textColor="@color/jmfont_gray"
- android:textSize="18sp"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:gravity="center_horizontal"
- android:text="@string/exit_title"
- android:textColor="@color/jmfont_gray"
- android:textSize="16sp"/>
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:background="@color/jmfont_gray"/>
- <LinearLayout
- android:layout_width="320dp"
- android:layout_height="match_parent"
- android:gravity="center"
- android:orientation="horizontal">
- <Button
- android:id="@+id/dialog_cancel"
- android:layout_width="159.5dp"
- android:layout_height="match_parent"
- android:background="@color/jm_transparent"
- android:gravity="center"
- android:text="@string/jm_cancel"
- android:textAllCaps="false"
- android:textColor="@color/jmfont_fonts_blues"
- android:textSize="15sp"/>
- <View
- android:layout_width="0.5dp"
- android:layout_height="match_parent"
- android:background="@color/jmfont_gray"/>
- <Button
- android:id="@+id/dialog_exit"
- android:layout_width="159.5dp"
- android:layout_height="match_parent"
- android:background="@color/jm_transparent"
- android:gravity="center"
- android:text="@string/jm_confirm"
- android:textAllCaps="false"
- android:textColor="@color/jmfont_fonts_blues"
- android:textSize="15sp"/>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|