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

Last change on this file since 67541a6 was fd4a5b9, checked in by Antonio Araujo Brett <aaraujo@…>, 11 years ago

*- Implementada funcionalidad de descifrar un archivo. Agregadas actividades para realizar operación de descifrado y mostrar resultados del archivo descifrado.

  • Property mode set to 100644
File size: 1.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    <LinearLayout
11        android:layout_width="match_parent"
12        android:layout_height="match_parent" >
13
14        <EditText
15            android:id="@+id/password"
16            android:layout_width="0dp"
17            android:layout_height="wrap_content"
18            android:layout_weight="1"
19            android:ems='10'
20            android:inputType="textPassword" >
21            <requestFocus />
22        </EditText>
23    </LinearLayout>
24
25    <LinearLayout
26        android:layout_width="match_parent"
27        android:layout_height="wrap_content"
28        android:baselineAligned="false"
29        android:padding="0dp" >
30
31        <Button
32            android:id="@+id/button_accept"
33            android:layout_width="0dp"
34            android:layout_height="match_parent"
35            android:layout_weight="1"
36            android:text="@android:string/ok"
37            android:enabled="false" />
38
39    </LinearLayout>
40
41</LinearLayout>
Note: See TracBrowser for help on using the repository browser.