<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/ll_content"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:background="@drawable/bg_white_10_top"
|
android:orientation="vertical">
|
|
<include
|
layout="@layout/xui_include_topbar"
|
android:layout_width="match_parent"
|
android:layout_height="44dp" />
|
|
<LinearLayout
|
android:id="@+id/time_picker"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@android:color/white"
|
android:orientation="horizontal">
|
|
<com.example.oktrip.utils.citypickerview.picker.wheelview.WheelView
|
android:id="@+id/year"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_weight="0.95" />
|
|
<com.example.oktrip.utils.citypickerview.picker.wheelview.WheelView
|
android:id="@+id/month"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_weight="1" />
|
|
<com.example.oktrip.utils.citypickerview.picker.wheelview.WheelView
|
android:id="@+id/day"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_weight="1" />
|
|
<com.example.oktrip.utils.citypickerview.picker.wheelview.WheelView
|
android:id="@+id/hour"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_weight="1" />
|
|
<com.example.oktrip.utils.citypickerview.picker.wheelview.WheelView
|
android:id="@+id/min"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_weight="1" />
|
|
<com.example.oktrip.utils.citypickerview.picker.wheelview.WheelView
|
android:id="@+id/second"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_weight="1" />
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|