OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
David Trainor- moved to gerrit
2014/07/07 21:00:41
2014?
Yaron
2014/07/08 00:22:25
Done.
| |
3 | |
4 Use of this source code is governed by a BSD-style license that can be | |
5 found in the LICENSE file. | |
6 --> | |
7 | |
8 <TableLayout | |
9 xmlns:android="http://schemas.android.com/apk/res/android" | |
10 android:layout_width="match_parent" | |
11 android:layout_height="match_parent" | |
12 android:stretchColumns="1" | |
13 android:paddingTop="5dp" | |
14 android:paddingEnd="7dp" | |
15 android:paddingBottom="5dp" | |
16 android:paddingStart="7dp" > | |
17 <TextView | |
18 android:id="@+id/explanation" | |
19 android:layout_width="match_parent" /> | |
20 <TableRow> | |
21 <TextView | |
22 android:id="@+id/username_label" | |
23 android:paddingStart="7dp"/> | |
24 <EditText | |
25 android:id="@+id/username" | |
26 android:inputType="textNoSuggestions" | |
27 android:contentDescription="@string/accessibility_http_auth_username _input" /> | |
28 </TableRow> | |
29 <TableRow> | |
30 <TextView | |
31 android:id="@+id/password_label" | |
32 android:paddingStart="7dp"/> | |
33 <EditText | |
34 android:id="@+id/password" | |
35 android:inputType="textPassword" | |
36 android:contentDescription="@string/accessibility_http_auth_password _input" /> | |
37 </TableRow> | |
38 </TableLayout> | |
OLD | NEW |