Merge pull request #1088 from owncloud/updated_docs_about_target_of_PRs
[pub/Android/ownCloud.git] / res / layout / passcodelock.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3 ownCloud Android client application
4
5 Copyright (C) 2012 Bartek Przybylski
6 Copyright (C) 2015 ownCloud Inc.
7
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License version 2,
10 as published by the Free Software Foundation.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
19 -->
20 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
21 xmlns:oc="http://schemas.android.com/apk/res/com.owncloud.android"
22 android:layout_width="fill_parent"
23 android:layout_height="fill_parent"
24 android:gravity="center_horizontal"
25 android:orientation="vertical"
26 android:padding="20dp" >
27
28
29 <TextView
30 android:id="@+id/header"
31 android:layout_width="wrap_content"
32 android:layout_height="wrap_content"
33 android:text="@string/pass_code_enter_pass_code"
34 android:textColor="@android:color/black"
35 android:gravity="center_horizontal"
36 />
37
38 <TextView
39 android:id="@+id/explanation"
40 android:layout_width="wrap_content"
41 android:layout_height="wrap_content"
42 android:text="@string/pass_code_configure_your_pass_code_explanation"
43 android:textAppearance="@android:style/TextAppearance.Small"
44 android:gravity="center_horizontal"
45 />
46
47 <LinearLayout
48 android:layout_width="fill_parent"
49 android:layout_height="wrap_content"
50 android:gravity="center_horizontal" >
51
52 <EditText
53 android:id="@+id/txt0"
54 android:focusable="true"
55 style="@style/PassCodeStyle"
56 android:cursorVisible="true"
57 android:imeOptions="flagNoExtractUi"
58 ><requestFocus/></EditText>
59
60 <EditText
61 android:id="@+id/txt1"
62 style="@style/PassCodeStyle"
63 android:cursorVisible="true"
64 android:imeOptions="flagNoExtractUi"
65 />
66
67 <EditText
68 android:id="@+id/txt2"
69 style="@style/PassCodeStyle"
70 android:cursorVisible="true"
71 android:imeOptions="flagNoExtractUi"
72 />
73
74 <EditText
75 android:id="@+id/txt3"
76 style="@style/PassCodeStyle"
77 android:cursorVisible="true"
78 android:imeOptions="flagNoExtractUi"
79 />
80 </LinearLayout>
81
82 <Button
83 android:id="@+id/cancel"
84 android:layout_width="wrap_content"
85 android:layout_height="wrap_content"
86 android:text="@string/common_cancel" />
87
88 </LinearLayout>