blob: 1e9297d0fd5d17c6bd52779e6436278dec7d6dc9 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/AlertDialogContent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/explanation"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<org.chromium.chrome.browser.widget.FloatLabelLayout
android:id="@+id/username_label"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<org.chromium.chrome.browser.widget.AlertDialogEditText
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/login_dialog_username_field"
android:inputType="textNoSuggestions"
android:imeOptions="flagNoExtractUi" />
</org.chromium.chrome.browser.widget.FloatLabelLayout>
<org.chromium.chrome.browser.widget.FloatLabelLayout
android:id="@+id/password_label"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<org.chromium.chrome.browser.widget.AlertDialogEditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/login_dialog_password_field"
android:inputType="textPassword"
android:imeOptions="flagNoExtractUi" />
</org.chromium.chrome.browser.widget.FloatLabelLayout>
</LinearLayout>
</ScrollView>