<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/bg_white_top_20dp"
|
android:orientation="vertical">
|
|
<LinearLayout
|
android:id="@+id/ll_content"
|
android:layout_width="fill_parent"
|
android:layout_height="160dp"
|
android:layout_marginTop="20dp"
|
android:layout_marginBottom="10dp"
|
android:orientation="horizontal">
|
|
<cn.sinata.xldutils.view.WheelView
|
android:id="@+id/wv_1"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1.2" />
|
|
<cn.sinata.xldutils.view.WheelView
|
android:id="@+id/wv_2"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1" />
|
|
</LinearLayout>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:orientation="horizontal"
|
android:layout_marginBottom="14dp"
|
android:layout_height="wrap_content">
|
<TextView
|
android:id="@+id/tv_cancel"
|
android:layout_width="0dp"
|
android:layout_height="40dp"
|
android:gravity="center"
|
android:text="取消"
|
android:textColor="@color/colorPrimary"
|
android:layout_weight="1"
|
android:textSize="15sp"
|
android:layout_marginStart="40dp"
|
android:layout_marginEnd="10dp"
|
android:textStyle="bold"
|
android:layout_marginTop="15dp"
|
android:background="@drawable/bg_orange_line_20dp"/>
|
<TextView
|
android:id="@+id/tv_ok"
|
android:layout_width="0dp"
|
android:layout_height="40dp"
|
android:gravity="center"
|
android:text="确定"
|
android:textColor="@color/white"
|
android:layout_weight="1"
|
android:textSize="15sp"
|
android:layout_marginStart="10dp"
|
android:layout_marginEnd="40dp"
|
android:textStyle="bold"
|
android:layout_marginTop="15dp"
|
android:background="@drawable/bg_btn_dialog_ok"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|