summaryrefslogtreecommitdiff
path: root/main/src/main/res/layout/config_converter.xml
blob: ff0dcaa249debff7e732a05d82e50f65adcecc0b (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
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:tools="http://schemas.android.com/tools"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_margin="@dimen/stdpadding"
            android:orientation="vertical">

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

        <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@string/files_missing_hint"
                android:visibility="gone"
                android:id="@+id/files_missing_hint"
                tools:visibilty="visible"/>

        <CheckBox
                android:id="@+id/importpkcs12"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:checked="true"
                tools:visibilty="visible"
                android:text="@string/importpkcs12fromconfig"
                android:visibility="gone"/>

        <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="10dp"
                android:textAppearance="?android:attr/textAppearanceMedium"
                android:text="@string/import_log"
                android:id="@+id/textView"/>

    </LinearLayout>


</ScrollView>