<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="fill_parent"
|
android:layout_height="wrap_content">
|
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:layout_marginStart="14dp"
|
android:layout_marginEnd="14dp"
|
android:layout_marginBottom="14dp"
|
android:background="@drawable/bg_white_10dp">
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/tv_cancel"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:padding="16dp"
|
android:text="取消"
|
android:textColor="@color/textColor99"
|
android:textSize="@dimen/textSize"/>
|
|
<TextView
|
android:id="@+id/tv_sure"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentRight="true"
|
android:padding="16dp"
|
android:text="确认"
|
android:textColor="@color/colorPrimary"
|
android:textSize="@dimen/textSize"/>
|
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
|
android:id="@+id/tv_title"
|
android:layout_centerInParent="true"
|
android:textColor="@color/textColor"
|
android:textSize="16sp"
|
android:textStyle="bold"
|
android:text=""/>
|
</RelativeLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_content"
|
android:layout_width="fill_parent"
|
android:layout_height="150dp"
|
android:orientation="horizontal"
|
android:layout_marginBottom="10dp">
|
|
<cn.sinata.xldutils.view.WheelView
|
android:id="@+id/wv_1"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"/>
|
</LinearLayout>
|
</LinearLayout>
|
</FrameLayout>
|