OC-2584: Detect if the server supports the Share API. This Check is in OwnCloudServer...
[pub/Android/ownCloud.git] / res / layout / pincodelock.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) 2012-2013 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/pinHdr"
31 android:layout_width="wrap_content"
32 android:layout_height="wrap_content"
33 android:text="@string/pincode_enter_pin_code"
34 android:textColor="@android:color/black"
35 android:gravity="center_horizontal"
36 />
37 <TextView
38 android:id="@+id/pinHdrExpl"
39 android:layout_width="wrap_content"
40 android:layout_height="wrap_content"
41 android:text="@string/pincode_configure_your_pin_explanation"
42 android:textAppearance="@android:style/TextAppearance.Small"
43 android:gravity="center_horizontal"
44 />
45
46 <LinearLayout
47 android:layout_width="fill_parent"
48 android:layout_height="wrap_content"
49 android:gravity="center_horizontal" >
50
51 <EditText
52 android:id="@+id/txt1"
53 android:focusable="true"
54 style="@style/PassCodeStyle"
55 android:cursorVisible="true"
56 ><requestFocus/></EditText>
57
58 <EditText
59 android:id="@+id/txt2"
60 style="@style/PassCodeStyle" />
61
62 <EditText
63 android:id="@+id/txt3"
64 style="@style/PassCodeStyle" />
65
66 <EditText
67 android:id="@+id/txt4"
68 style="@style/PassCodeStyle" />
69 </LinearLayout>
70
71 <Button
72 android:id="@+id/cancel"
73 android:layout_width="wrap_content"
74 android:layout_height="wrap_content"
75 android:text="@string/common_cancel" />
76
77 </LinearLayout>