source: dispositivos_moviles/TibisayMovil/res/layout/activity_verify_result_pdf.xml @ e68708b

Last change on this file since e68708b was e68708b, checked in by Antonio Araujo Brett <aaraujo@…>, 10 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: 4.6 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_marginTop="10dp"
13        android:layout_marginLeft="5dp"
14        android:layout_marginRight="5dp"
15        android:gravity="center"
16        android:background="@drawable/bg_path_file_to_sign"
17        android:text="@string/verificar_titulo_firmae" />
18
19    <LinearLayout
20        android:layout_width="match_parent"
21        android:layout_height="wrap_content" >
22
23        <TextView
24            android:id="@+id/archivo_original_a_descifrar"
25            android:layout_width="wrap_content"
26            android:layout_height="wrap_content"
27            android:layout_marginLeft="5dp"
28            android:layout_marginRight="5dp"
29            android:layout_marginTop="5dp"
30            android:layout_weight="0.96" />
31
32        <ImageView
33            android:id="@+id/arrow_show_errors"
34            android:layout_width="wrap_content"
35            android:layout_height="wrap_content"
36            android:layout_gravity="right"
37            android:src="@drawable/flecha_siguiente" />
38    </LinearLayout>
39   
40    <TextView
41        android:id="@+id/label_archivo_original"
42        android:layout_width="fill_parent"
43        android:layout_height="wrap_content"
44        android:layout_marginTop="10dp"
45        android:layout_marginLeft="5dp"
46        android:layout_marginRight="5dp"
47        android:gravity="center"
48        android:background="@drawable/bg_path_file_to_sign"
49        android:text="@string/verificar_titulo_lista_doc" />
50
51        <LinearLayout
52        android:layout_width="match_parent"
53        android:layout_height="0dp"
54        android:layout_weight="0.15" >
55       
56            <ImageView
57        android:id="@+id/type_image"
58        android:layout_width="35dp"
59        android:layout_height="wrap_content"
60        android:layout_alignParentLeft="true"
61        android:layout_centerVertical="true"
62        android:contentDescription="@string/type"
63        android:src="@drawable/ic_archivo" />
64
65   
66        <TextView
67            android:id="@+id/filename_text"
68            style="@style/style_font_files"
69            android:layout_width="fill_parent"
70            android:layout_height="wrap_content" />
71
72   
73           
74    </LinearLayout>
75<!--
76    <TextView
77        android:id="@+id/imagen_utlizada_name"
78        android:layout_width="wrap_content"
79        android:layout_height="wrap_content"
80        android:layout_marginTop="5dp"
81        android:layout_marginLeft="5dp"
82        android:layout_marginRight="5dp"
83        android:text="" />
84 -->       
85   
86    <TextView
87        android:id="@+id/label_destinatario_cifrado"
88        android:layout_width="fill_parent"
89        android:layout_height="wrap_content"
90        android:layout_marginTop="10dp"
91        android:layout_marginLeft="5dp"
92        android:layout_marginRight="5dp"
93        android:gravity="center"
94        android:background="@drawable/bg_path_file_to_sign"
95        android:text="@string/verificar_titulo_lista_firmantes" />
96<!--     
97    <TextView
98        android:id="@+id/archivo_firmado_path"
99        android:layout_width="wrap_content"
100        android:layout_height="wrap_content"
101        android:layout_marginTop="5dp"
102        android:layout_marginLeft="5dp"
103        android:layout_marginRight="5dp"
104        android:text="" />
105 -->   
106   
107    <LinearLayout
108        android:layout_width="match_parent"
109        android:layout_height="0dp"
110        android:layout_weight="0.40" >
111 
112        <ListView
113            android:id="@+id/signatures_list"
114            style="@style/style_listviews"
115            android:layout_width="match_parent"
116            android:layout_height="match_parent"
117            android:choiceMode="singleChoice" />
118       
119    </LinearLayout>
120   
121    <LinearLayout
122        android:id="@+id/linearSpacingBottom"
123        android:layout_width="fill_parent"
124        android:layout_height="0dp"
125        android:layout_weight="0.04"
126        android:orientation="vertical" />
127     
128   <LinearLayout       
129        android:layout_width="match_parent"
130        android:layout_height="3dp"
131        android:background="#777777"/>
132 
133    <include
134        android:id="@+id/button_bar"
135        android:layout_width="match_parent"
136        android:layout_height="wrap_content"
137        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
138</LinearLayout>
Note: See TracBrowser for help on using the repository browser.