aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/edit_subkey_expiry_dialog.xml
blob: 38dc03627ab071f099c735da1017556ddf37a524 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:paddingTop="16dp"
    android:paddingBottom="16dp"
    android:paddingLeft="24dp"
    android:paddingRight="24dp"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <CheckBox
        android:id="@+id/edit_subkey_expiry_no_expiry"
        android:checked="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="@string/btn_no_date" />

    <LinearLayout
        android:id="@+id/edit_subkey_expiry_layout"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <TextView
            style="@style/SectionHeader"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/section_current_expiry" />

        <TextView
            android:id="@+id/edit_subkey_expiry_current_expiry"
            android:textAppearance="@style/TextAppearance.AppCompat.Medium"
            android:padding="8dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

        <TextView
            style="@style/SectionHeader"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/section_new_expiry" />

        <!--
            Use Spinner style DatePicker, not the full calendar view
            Android < 5:
                android:spinnersShown="true"
                android:calendarViewShown="false"
            Android >= 5:
                android:datePickerMode="spinner"
        -->
        <!-- Hide calendarView in tablets because of the unix warparound bug. -->
        <DatePicker
            android:id="@+id/edit_subkey_expiry_date_picker"
            android:layout_gravity="center_horizontal"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            tools:ignore="UnusedAttribute"
            android:datePickerMode="spinner"
            android:spinnersShown="true"
            android:calendarViewShown="false" />
    </LinearLayout>

</LinearLayout>