You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="horizontal"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<NumberPicker
|
|
android:id="@+id/date"
|
|
android:layout_width="120dip"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
/>
|
|
|
|
<NumberPicker
|
|
android:id="@+id/hour"
|
|
android:layout_width="50dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dip"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
/>
|
|
|
|
<NumberPicker
|
|
android:id="@+id/minute"
|
|
android:layout_width="50dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dip"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
/>
|
|
|
|
<NumberPicker
|
|
android:id="@+id/amPm"
|
|
android:layout_width="50dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dip"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
/>
|
|
</LinearLayout> |