summaryrefslogtreecommitdiffstats
path: root/remoting/resources/android/layout/pin_dialog.xml
blob: 4ea5dc3195acc2a406295f34f3a0babb458441e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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.
-->

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_height="wrap_content"
        android:layout_width="match_parent">
    <EditText android:id="@+id/pin_dialog_text"
            android:inputType="numberPassword"
            android:imeOptions="actionDone"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"/>
    <CheckBox android:id="@+id/pin_dialog_check"
            android:text="@string/remember_pin"
            android:layout_height="wrap_content"
            android:layout_width="match_parent"/>
</LinearLayout>