123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/hisense_shape_dialog_exit"
- android:orientation="vertical">
- <TextView
- android:id="@+id/tx_tip"
- android:layout_width="wrap_content"
- android:layout_height="80dp"
- android:layout_gravity="center_horizontal"
- android:text="@string/hisense_pay_tip"
- android:gravity="center"
- android:textSize="15dp"
- android:textColor="@color/color_ff000000"/>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/dimen_1"
- android:background="@color/color_66000000"
- />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/btn_cancel"
- android:layout_width="0dp"
- android:layout_height="40dp"
- android:layout_gravity="center"
- android:layout_weight="1"
- android:textSize="15dp"
- android:gravity="center"
- android:text="@string/cancel"
- android:textColor="@drawable/hisense_selector_dialog_color"
- />
- <View
- android:layout_width="@dimen/dimen_1"
- android:layout_height="match_parent"
- android:background="@color/color_66000000"
- />
- <TextView
- android:id="@+id/btn_ok"
- android:layout_width="0dp"
- android:layout_height="40dp"
- android:layout_weight="1"
- android:gravity="center"
- android:text="@string/ok"
- android:textSize="15dp"
- android:textColor="@drawable/hisense_selector_dialog_color"
- />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/dimen_14"
- />
- </LinearLayout>
|