source: dispositivos_moviles/TibisayMovil/res/layout/password.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.2 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="0dp"
39            android:layout_height="wrap_content"
40            android:layout_weight="1"
41            android:inputType="textPassword" >
42            <requestFocus />
43        </EditText>
44    </LinearLayout>
45
46    <LinearLayout
47        android:layout_width="match_parent"
48        android:layout_height="wrap_content"
49        android:baselineAligned="false"
50        android:padding="0dp" >
51
52        <Button
53            android:id="@+id/button_recreate"
54            android:layout_width="match_parent"
55            android:layout_height="wrap_content"
56            android:layout_weight="1"
57            android:text="@string/recreate_keystore"
58            android:visibility="gone" />
59
60        <Button
61            android:id="@+id/button_accept"
62            android:layout_width="match_parent"
63            android:layout_height="match_parent"
64            android:layout_weight="1"
65            android:text="@android:string/ok"
66            android:enabled="false" />
67
68    </LinearLayout>
69
70</LinearLayout>
Note: See TracBrowser for help on using the repository browser.