|
|
@@ -1,17 +1,19 @@
|
|
|
<?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:layout_height="wrap_content"
|
|
|
android:gravity="center_horizontal"
|
|
|
android:orientation="vertical"
|
|
|
- android:paddingLeft="10dp"
|
|
|
- android:paddingRight="10dp"
|
|
|
- android:paddingTop="10dp">
|
|
|
+ android:paddingLeft="@dimen/dp_10"
|
|
|
+ android:paddingTop="@dimen/dp_10"
|
|
|
+ android:paddingRight="@dimen/dp_10"
|
|
|
+ android:paddingBottom="@dimen/dp_4">
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/title_tv"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="20dp"
|
|
|
+ android:textStyle="bold"
|
|
|
android:gravity="center"
|
|
|
android:text="@string/common_dialog_title"
|
|
|
android:textColor="@color/text_main"
|
|
|
@@ -21,24 +23,29 @@
|
|
|
<TextView
|
|
|
android:id="@+id/message_tv"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="50dp"
|
|
|
+ android:layout_height="60dp"
|
|
|
android:layout_marginTop="5dp"
|
|
|
+ android:paddingLeft="@dimen/dp_10"
|
|
|
+ android:paddingRight="@dimen/dp_10"
|
|
|
android:ellipsize="end"
|
|
|
- android:gravity="center"
|
|
|
+ android:gravity="left|center_vertical"
|
|
|
android:maxLines="2"
|
|
|
android:textColor="@color/text_hine"
|
|
|
android:textSize="@dimen/text_main" />
|
|
|
|
|
|
- <View
|
|
|
+ <!-- <View
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="2px"
|
|
|
android:layout_marginTop="10dp"
|
|
|
android:background="@color/item_line" />
|
|
|
-
|
|
|
+-->
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="40dp"
|
|
|
android:orientation="horizontal"
|
|
|
+ android:paddingLeft="@dimen/dp_10"
|
|
|
+ android:paddingRight="@dimen/dp_10"
|
|
|
+ android:padding="@dimen/dp_4"
|
|
|
android:textColor="@color/text_main"
|
|
|
android:textSize="@dimen/text_main">
|
|
|
|
|
|
@@ -47,15 +54,17 @@
|
|
|
android:layout_width="0dp"
|
|
|
android:layout_height="match_parent"
|
|
|
android:layout_weight="1"
|
|
|
+ android:textColor="@color/titleBlue"
|
|
|
+ android:background="@drawable/selector_cancel_bg"
|
|
|
android:gravity="center"
|
|
|
android:text="@string/common_cancel"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
+ android:layout_marginRight="20dp"
|
|
|
+ android:textSize="@dimen/text_hine" />
|
|
|
|
|
|
- <View
|
|
|
+ <!-- <View
|
|
|
android:layout_width="2px"
|
|
|
android:layout_height="match_parent"
|
|
|
- android:background="@color/item_line" />
|
|
|
+ android:background="@color/item_line" />-->
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/sure_tv"
|
|
|
@@ -63,8 +72,10 @@
|
|
|
android:layout_height="match_parent"
|
|
|
android:layout_weight="1"
|
|
|
android:gravity="center"
|
|
|
+ android:layout_marginLeft="20dp"
|
|
|
+ android:background="@drawable/selector_confirm_bg"
|
|
|
android:text="@string/common_sure"
|
|
|
- android:textColor="@color/text_main"
|
|
|
- android:textSize="@dimen/text_main" />
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/text_hine" />
|
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|