dialog_wheelview.xml
1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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="wrap_content"
android:orientation="vertical"
android:background="@color/cl_white"
>
<com.dayu.widgets.WheelView
android:id="@+id/wheel_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:paddingLeft="40dp"
android:paddingRight="40dp"
android:layout_marginTop="30dp"
android:layout_marginBottom="20dp"
>
<Button
android:id="@+id/btn_cancel"
style="@style/btn_bottom_common"
android:layout_width="0dp"
android:layout_weight="1"
android:background="@drawable/btn_gray_commom"
android:textColor="@color/text_common_green"
android:text="@string/cancle"
android:layout_marginRight="20dp"
/>
<Button
android:id="@+id/btn_comfirm"
style="@style/btn_bottom_common"
android:layout_width="0dp"
android:layout_weight="1"
android:background="@drawable/btn_green_commom"
android:text="@string/comfirm"
/>
</LinearLayout>
</LinearLayout>