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

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

Al verificar firma electrónica de documento PDF desplegar las aplicaciones disponibles para mostrar el archivo PDF cuando se presiona el archivo. Ticket #28

  • 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:id="@+id/layout_pdf_signed_result"
53        android:layout_width="match_parent"
54        android:layout_height="0dp"
55        android:layout_weight="0.15" >
56       
57            <ImageView
58        android:id="@+id/type_image"
59        android:layout_width="35dp"
60        android:layout_height="wrap_content"
61        android:layout_alignParentLeft="true"
62        android:layout_centerVertical="true"
63        android:contentDescription="@string/type"
64        android:src="@drawable/ic_archivo" />
65
66   
67        <TextView
68            android:id="@+id/filename_text"
69            style="@style/style_font_files"
70            android:layout_width="fill_parent"
71            android:layout_height="wrap_content" />
72
73   
74           
75    </LinearLayout>
76<!--
77    <TextView
78        android:id="@+id/imagen_utlizada_name"
79        android:layout_width="wrap_content"
80        android:layout_height="wrap_content"
81        android:layout_marginTop="5dp"
82        android:layout_marginLeft="5dp"
83        android:layout_marginRight="5dp"
84        android:text="" />
85 -->       
86   
87    <TextView
88        android:id="@+id/label_destinatario_cifrado"
89        android:layout_width="fill_parent"
90        android:layout_height="wrap_content"
91        android:layout_marginTop="10dp"
92        android:layout_marginLeft="5dp"
93        android:layout_marginRight="5dp"
94        android:gravity="center"
95        android:background="@drawable/bg_path_file_to_sign"
96        android:text="@string/verificar_titulo_lista_firmantes" />
97<!--     
98    <TextView
99        android:id="@+id/archivo_firmado_path"
100        android:layout_width="wrap_content"
101        android:layout_height="wrap_content"
102        android:layout_marginTop="5dp"
103        android:layout_marginLeft="5dp"
104        android:layout_marginRight="5dp"
105        android:text="" />
106 -->   
107   
108    <LinearLayout
109        android:layout_width="match_parent"
110        android:layout_height="0dp"
111        android:layout_weight="0.40" >
112 
113        <ListView
114            android:id="@+id/signatures_list"
115            style="@style/style_listviews"
116            android:layout_width="match_parent"
117            android:layout_height="match_parent"
118            android:choiceMode="singleChoice" />
119       
120    </LinearLayout>
121   
122    <LinearLayout
123        android:id="@+id/linearSpacingBottom"
124        android:layout_width="fill_parent"
125        android:layout_height="0dp"
126        android:layout_weight="0.04"
127        android:orientation="vertical" />
128     
129   <LinearLayout       
130        android:layout_width="match_parent"
131        android:layout_height="3dp"
132        android:background="#777777"/>
133 
134    <include
135        android:id="@+id/button_bar"
136        android:layout_width="match_parent"
137        android:layout_height="wrap_content"
138        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
139</LinearLayout>
Note: See TracBrowser for help on using the repository browser.