Weather/res/layout/mj_dialog_pick_time.xml
2021-05-10 10:13:34 +02:00

15 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android">
<include layout="@layout/mj_stub_title_frame" />
<ScrollView android:paddingTop="@dimen/mj_dialog_frame_margin" android:paddingBottom="@dimen/mj_dialog_frame_margin" android:clipToPadding="false" android:layout_width="fill_parent" android:layout_height="wrap_content">
<LinearLayout android:orientation="horizontal" android:id="@id/time_picker" android:layout_width="fill_parent" android:layout_height="wrap_content">
<com.moji.pickerview.lib.WheelView android:id="@id/year" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.0" />
<com.moji.pickerview.lib.WheelView android:id="@id/month" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.1" />
<com.moji.pickerview.lib.WheelView android:id="@id/day" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.1" />
<com.moji.pickerview.lib.WheelView android:id="@id/hour" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.1" />
<com.moji.pickerview.lib.WheelView android:id="@id/min" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1.1" />
</LinearLayout>
</ScrollView>
<include layout="@layout/mj_stub_action_buttons" />
</LinearLayout>