<?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="@null"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:id="@+id/basedialog_linearlayout"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:background="@null"
|
android:gravity="center"
|
android:orientation="vertical">
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.2dp"
|
android:background="@color/appline"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<TextView
|
android:id="@+id/basedialog_cancelbtn"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginRight="15dp"
|
android:layout_weight="1"
|
android:layout_gravity="center"
|
android:gravity="center"
|
android:textSize="14sp"
|
android:text="取消"
|
android:minHeight="35dp"
|
android:textColor="@color/apptakeaction"/>
|
|
<View
|
android:layout_width="0.2dp"
|
android:layout_height="match_parent"
|
android:background="@color/appline"/>
|
|
<TextView
|
android:id="@+id/basedialog_okbtn"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="15dp"
|
android:layout_weight="1"
|
android:text="确定"
|
android:layout_gravity="center"
|
android:gravity="center"
|
android:minHeight="35dp"
|
android:textSize="14sp"
|
android:textColor="@color/apptakeaction"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</LinearLayout>
|