Roll src/third_party/WebKit 3529d49:06e8485 (svn 202554:202555)
[chromium-blink-merge.git] / chrome / android / java / res / layout / sync_enter_passphrase.xml
blobf3c97c58e78f667fdc7ea2823f63713b088616d7
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:orientation="vertical"
13         style="@style/AlertDialogContent">
14         <TextView
15             android:id="@+id/prompt_text"
16             android:layout_width="match_parent"
17             android:layout_height="wrap_content"
18             android:layout_marginBottom="25dp" />
19         <org.chromium.chrome.browser.widget.AlertDialogEditText
20             android:id="@+id/passphrase"
21             android:layout_width="match_parent"
22             android:layout_height="wrap_content"
23             android:inputType="textPassword"
24             android:singleLine="true"
25             android:imeOptions="actionNext" />
26         <TextView
27             android:id="@+id/verifying"
28             android:gravity="center_horizontal"
29             android:layout_width="match_parent"
30             android:layout_height="match_parent" />
31         <org.chromium.ui.widget.TextViewWithClickableSpans
32             android:id="@+id/reset_text"
33             android:layout_width="match_parent"
34             android:layout_height="wrap_content"
35             android:visibility="gone" />
36     </LinearLayout>
37 </ScrollView>