source: dispositivos_moviles/TibisayMovil/res/layout/activity_encryption_result.xml @ ca6582b

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

*- Implementada funcionalidad para verificar firma electrónica de documento PDF. Se agregó actividad para desplegar los resultados de la firma de un documento PDF.

  • Property mode set to 100644
File size: 3.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="fill_parent"
4    android:layout_height="fill_parent"
5    android:orientation="vertical"
6    android:id="@+id/decryption_result_layout">
7   
8    <TextView
9        android:id="@+id/label_archivo_a_descifrar"
10        android:layout_width="fill_parent"
11        android:layout_height="wrap_content"
12        android:layout_marginLeft="5dp"
13        android:layout_marginRight="5dp"
14        android:layout_marginTop="10dp"
15        android:background="@drawable/bg_path_file_to_sign"
16        android:gravity="center"
17        android:text="@string/label_archivo_a_cifrar" />
18
19    <TextView
20        android:id="@+id/archivo_original_pdf"
21        android:layout_width="wrap_content"
22        android:layout_height="wrap_content"
23        android:layout_marginTop="5dp"
24        android:layout_marginLeft="5dp"
25        android:layout_marginRight="5dp"
26        android:text="" />
27   
28    <TextView
29        android:id="@+id/label_archivo_original"
30        android:layout_width="fill_parent"
31        android:layout_height="wrap_content"
32        android:layout_marginLeft="5dp"
33        android:layout_marginRight="5dp"
34        android:layout_marginTop="10dp"
35        android:background="@drawable/bg_path_file_to_sign"
36        android:gravity="center"
37        android:text="@string/label_archivo_cifrado" />
38
39    <TextView
40        android:id="@+id/archivo_descifrado"
41        android:layout_width="wrap_content"
42        android:layout_height="wrap_content"
43        android:layout_marginTop="5dp"
44        android:layout_marginLeft="5dp"
45        android:layout_marginRight="5dp"
46        android:text="" />
47   
48    <TextView
49        android:id="@+id/label_destinatario_cifrado"
50        android:layout_width="fill_parent"
51        android:layout_height="wrap_content"
52        android:layout_marginLeft="5dp"
53        android:layout_marginRight="5dp"
54        android:layout_marginTop="10dp"
55        android:background="@drawable/bg_path_file_to_sign"
56        android:gravity="center"
57        android:text="@string/label_destinatario_cifrado" />
58
59    <TextView
60        android:id="@+id/destinatario"
61        android:layout_width="wrap_content"
62        android:layout_height="wrap_content"
63        android:layout_marginTop="5dp"
64        android:layout_marginLeft="5dp"
65        android:layout_marginRight="5dp"
66        android:text="" />
67   
68    <LinearLayout
69        android:id="@+id/linearSpacingBottom"
70        android:layout_width="fill_parent"
71        android:layout_height="0dp"
72        android:layout_weight="1"
73        android:orientation="vertical" />
74     
75   <LinearLayout       
76        android:layout_width="match_parent"
77        android:layout_height="3dp"
78        android:background="#777777"/>
79 
80    <include
81        android:id="@+id/button_bar"
82        android:layout_width="match_parent"
83        android:layout_height="wrap_content"
84        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
85</LinearLayout>
Note: See TracBrowser for help on using the repository browser.