summaryrefslogtreecommitdiffstats
path: root/mobile/android/android-components/components/feature/prompts/src/main/res/layout/mozac_feature_prompts_time_picker.xml
blob: 68323699f5e8e81d82af936dad789d6cf5d3ddbd (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<merge xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:parentTag="android.widget.ScrollView">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:orientation="horizontal">

        <android.widget.NumberPicker
            android:id="@+id/hour_picker"
            android:layout_width="60dp"
            android:layout_height="wrap_content"
            android:layout_marginHorizontal="1dp"
            android:focusable="true"
            android:focusableInTouchMode="true" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/mozac_feature_prompts_second_separator" />

        <android.widget.NumberPicker
            android:id="@+id/minute_picker"
            android:layout_width="75dp"
            android:layout_height="wrap_content"
            android:layout_marginHorizontal="1dp"
            android:focusable="true"
            android:focusableInTouchMode="true" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/mozac_feature_prompts_second_separator" />

        <android.widget.NumberPicker
            android:id="@+id/second_picker"
            android:layout_width="75dp"
            android:layout_height="wrap_content"
            android:layout_marginHorizontal="1dp"
            android:focusable="true"
            android:focusableInTouchMode="true" />

        <TextView
            android:id="@+id/millisecond_separator"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/mozac_feature_prompts_millisecond_separator" />

        <android.widget.NumberPicker
            android:id="@+id/millisecond_picker"
            android:layout_width="75dp"
            android:layout_height="wrap_content"
            android:layout_marginHorizontal="1dp"
            android:focusable="true"
            android:focusableInTouchMode="true" />

    </LinearLayout>
</merge>