123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/jm_dialog_ios_bg"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="20dp"
- android:gravity="center_horizontal"
- android:orientation="vertical">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/jm_dialog_title"
- android:textColor="@color/jmfont_black"
- android:textSize="16sp"
- android:textStyle="bold"/>
- <TextView
- android:id="@+id/content"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="4dp"
- android:textColor="@color/jmfont_black"
- android:textSize="12sp"
- tools:text="@string/http_rror_msg"/>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="@color/jm_dialog_line"/>
- <TextView
- android:id="@+id/confirm"
- android:layout_width="match_parent"
- android:layout_height="40dp"
- android:layout_gravity="center_horizontal"
- android:gravity="center"
- android:text="@string/jm_confirm"
- android:textColor="@color/jmfont_blues"
- android:textSize="16sp"/>
- </LinearLayout>
|