source: dispositivos_moviles/TibisayMovil/res/layout/password_confirmation.xml @ 67541a6

Last change on this file since 67541a6 was 288126d, checked in by Jose Ruiz <joseruiz@…>, 11 years ago

Manejo de repositorio de certificados y firma con pkcs7

  • Property mode set to 100644
File size: 2.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    xmlns:tools="http://schemas.android.com/tools"
5    android:layout_width="match_parent"
6    android:layout_height="match_parent"
7    android:orientation="vertical"
8    android:padding="10dp">
9
10    <TextView
11        android:id="@+id/title"
12        android:layout_width="match_parent"
13        android:layout_height="wrap_content"
14        android:maxLines="10"
15        android:textAppearance="?android:attr/textAppearanceLarge" />
16
17    <ImageView
18        tools:ignore="ContentDescription"
19        android:id="@+id/divider"
20        android:layout_width="match_parent"
21        android:layout_height="wrap_content"
22        android:layout_marginTop="10dp"
23        android:layout_marginBottom="15dp"
24        android:src="@android:drawable/divider_horizontal_dim_dark" />
25
26    <LinearLayout
27        android:layout_width="match_parent"
28        android:layout_height="wrap_content" >
29
30        <TextView
31            android:id="@+id/TextView01"
32            android:layout_width="84dp"
33            android:layout_height="wrap_content"
34            android:text="@string/password" />
35
36        <EditText
37            android:id="@+id/password"
38            android:layout_width="match_parent"
39            android:layout_height="wrap_content"
40            android:layout_weight="1"
41            android:ems="10"
42            android:inputType="textPassword" >
43            <requestFocus />
44        </EditText>
45    </LinearLayout>
46
47    <LinearLayout
48        android:layout_width="match_parent"
49        android:layout_height="wrap_content" >
50
51        <TextView
52            android:id="@+id/textView1"
53            android:layout_width="84dp"
54            android:layout_height="wrap_content"
55            android:text="@string/confirmation" />
56
57        <EditText
58            android:id="@+id/confirmation"
59            android:layout_width="match_parent"
60            android:layout_height="wrap_content"
61            android:layout_weight="1"
62            android:ems="10"
63            android:inputType="textPassword" >
64        </EditText>
65    </LinearLayout>
66
67    <Button
68        android:id="@+id/button_accept"
69        android:layout_width="match_parent"
70        android:layout_height="wrap_content"
71        android:text="@android:string/ok"
72        android:enabled="false" />
73
74</LinearLayout>
Note: See TracBrowser for help on using the repository browser.