Implement MoveFileLocal (with creating a snapshot).
[chromium-blink-merge.git] / chrome / android / java / res / layout / sync_custom_passphrase.xml
blobac0faa74563d1d55b7fb8e1e67b18a27978e84f1
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3      Use of this source code is governed by a BSD-style license that can be
4      found in the LICENSE file. -->
6 <ScrollView
7     xmlns:android="http://schemas.android.com/apk/res/android"
8     android:layout_width="match_parent"
9     android:layout_height="wrap_content"
10     android:overScrollMode="ifContentScrolls">
11     <LinearLayout
12         android:layout_width="match_parent"
13         android:layout_height="wrap_content"
14         android:padding="25dp"
15         android:orientation="vertical">
16         <TextView
17             android:layout_width="match_parent"
18             android:layout_height="wrap_content"
19             android:layout_marginBottom="25dp"
20             android:text="@string/sync_custom_passphrase"/>
21         <EditText
22             android:id="@+id/passphrase"
23             android:hint="@string/sync_enter_custom_passphrase_hint"
24             android:layout_width="match_parent"
25             android:layout_height="wrap_content"
26             android:inputType="textPassword"
27             android:singleLine="true"
28             android:imeOptions="actionNext" />
29         <EditText
30             android:id="@+id/confirm_passphrase"
31             android:hint="@string/sync_enter_custom_passphrase_hint_confirm"
32             android:layout_width="match_parent"
33             android:layout_height="wrap_content"
34             android:inputType="textPassword"
35             android:singleLine="true"
36             android:imeOptions="actionDone" />
37     </LinearLayout>
38 </ScrollView>