summaryrefslogtreecommitdiff
path: root/res/layout/log_in_dialog.xml
blob: 6f28118d6eb52f03df6f71ec1984dfe60a17f49d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    tools:context=".LogInDialog" >

    <EditText
        android:id="@+id/username_entered"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="4dp"
        android:layout_marginLeft="4dp"
        android:layout_marginRight="4dp"
        android:layout_marginTop="16dp"
        android:ems="10"
        android:hint="@string/username_ask"
        android:inputType="textUri" >

        <requestFocus />
    </EditText>

    <EditText
        android:id="@+id/password_entered"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:ems="10"
        android:hint="@string/password_ask"
        android:inputType="textPassword" />

</LinearLayout>