<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="fill_parent"
|
android:layout_height="wrap_content"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<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">
|
<androidx.constraintlayout.widget.ConstraintLayout
|
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"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintBaseline_toBaselineOf="@id/tv_title"
|
android:textSize="@dimen/textSize"/>
|
|
<TextView
|
android:id="@+id/tv_sure"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:padding="16dp"
|
android:text="确认"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintBaseline_toBaselineOf="@id/tv_title"
|
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"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent"/>
|
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content"
|
android:id="@+id/tv_sub_title"
|
android:textColor="@color/textColor99"
|
android:textSize="11sp"
|
android:textStyle="bold"
|
app:layout_constraintTop_toBottomOf="@id/tv_title"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
android:layout_marginTop="6dp"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
<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>
|