<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_centerHorizontal="true"
|
android:textColor="@color/textColor"
|
android:textSize="16sp"
|
android:layout_marginTop="14dp"
|
android:textStyle="bold"
|
android:text="修改小费金额"/>
|
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
|
android:layout_below="@id/tv_title"
|
android:text="小费归司机所有,添加将提高应答率"
|
android:layout_centerHorizontal="true"
|
android:textSize="12sp"
|
android:textColor="@color/textColor99"/>
|
</RelativeLayout>
|
|
<LinearLayout
|
android:id="@+id/ll_content"
|
android:layout_width="fill_parent"
|
android:layout_height="180dp"
|
android:orientation="vertical"
|
android:layout_marginTop="2dp"
|
android:layout_marginBottom="20dp">
|
<View style="@style/style_form_divider_line"
|
android:layout_marginTop="14dp"
|
android:layout_marginStart="14dp"/>
|
<cn.sinata.xldutils.view.WheelView
|
android:id="@+id/wv_1"
|
android:layout_width="match_parent"
|
android:layout_marginTop="14dp"
|
android:layout_height="match_parent"/>
|
</LinearLayout>
|
</LinearLayout>
|
</FrameLayout>
|