hjw
2023-04-20 a75addbc22f25b5fb219d3979f7bcd9cbf4942c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:gravity="center" >
    
    
    <com.jwipc.nodka_alarmpower.My_NumberPicker2
        android:id="@+id/mNumberPicker_hour"
        android:layout_width="250dp"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5dp"
        android:focusable="true"
        android:focusableInTouchMode="true"
        />
    
    <TextView 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="5dp"
        android:text=":" />
    
    <com.jwipc.nodka_alarmpower.My_NumberPicker2
        android:id="@+id/mNumberPicker_minute"
        android:layout_width="250dp"
        android:layout_height="250dp"
        android:layout_marginLeft="5dp"
        android:focusable="true"
        android:focusableInTouchMode="true"
        />
    
</LinearLayout>