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

Last change on this file was 58c7f6a, checked in by Antonio Araujo Brett <aaraujo@…>, 10 years ago

Modificaciones en archivos fuentes para la versión 1.1 que mejora el aspecto gráfico de la aplicación.

  • Property mode set to 100644
File size: 5.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2
3<!--
4/*
5Tibisay Movil
6
7Copyright (C) 2013 Antonio Araujo (aaraujo@cenditel.gob.ve), Jose Ruiz
8(jruiz@cenditel.gob.ve), Fundacion Centro Nacional de Desarrollo e
9Investigacion en Tecnologias Libres - CENDITEL.
10
11La Fundación CENDITEL concede permiso para usar, copiar, distribuir y/o
12modificar este programa, reconociendo el derecho que la humanidad posee al
13libre acceso al conocimiento, bajo los términos de la licencia de software
14GPL versión 2.0 de la Free Software Foundation.
15
16Este programa se distribuye con la esperanza de que sea util, pero SIN
17NINGUNA GARANTIA; tampoco las implicitas garantias de MERCANTILIDAD o
18ADECUACION A UN PROPOSITO PARTICULAR.
19
20Para mayor información sobre los términos de la licencia ver el archivo
21llamado "gpl-2.0.txt" en ingles.
22*/
23 -->
24
25<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
26    android:layout_width="fill_parent"
27    android:layout_height="fill_parent"
28    android:orientation="vertical"
29    android:id="@+id/decryption_result_layout">
30   
31    <TextView
32        android:id="@+id/label_archivo_a_descifrar"
33        android:layout_width="fill_parent"
34        android:layout_height="wrap_content"
35        android:layout_marginTop="10dp"
36        android:layout_marginLeft="5dp"
37        android:layout_marginRight="5dp"
38        android:gravity="center"
39        android:background="@drawable/bg_path_file_to_sign"
40        android:text="@string/verificar_titulo_firmae" />
41
42    <LinearLayout
43        android:layout_width="match_parent"
44        android:layout_height="wrap_content" >
45
46        <TextView
47            android:id="@+id/archivo_original_a_descifrar"
48            android:layout_width="wrap_content"
49            android:layout_height="wrap_content"
50            android:layout_marginLeft="5dp"
51            android:layout_marginRight="5dp"
52            android:layout_marginTop="5dp"
53            android:layout_weight="0.96" />
54
55        <ImageView
56            android:id="@+id/arrow_show_errors"
57            android:layout_width="wrap_content"
58            android:layout_height="wrap_content"
59            android:layout_gravity="right"
60            android:src="@drawable/flecha_siguiente" />
61    </LinearLayout>
62   
63    <TextView
64        android:id="@+id/label_archivo_original"
65        android:layout_width="fill_parent"
66        android:layout_height="wrap_content"
67        android:layout_marginTop="10dp"
68        android:layout_marginLeft="5dp"
69        android:layout_marginRight="5dp"
70        android:gravity="center"
71        android:background="@drawable/bg_path_file_to_sign"
72        android:text="@string/verificar_titulo_lista_doc" />
73
74        <LinearLayout
75            android:id="@+id/layout_pdf_signed_result"
76        android:layout_width="match_parent"
77        android:layout_height="0dp"
78        android:layout_weight="0.15" >
79       
80            <ImageView
81        android:id="@+id/type_image"
82        android:layout_width="35dp"
83        android:layout_height="wrap_content"
84        android:layout_alignParentLeft="true"
85        android:layout_centerVertical="true"
86        android:contentDescription="@string/type"
87        android:src="@drawable/ic_archivo_verde" />
88
89   
90        <TextView
91            android:id="@+id/filename_text"
92            style="@style/style_font_files"
93            android:layout_width="fill_parent"
94            android:layout_height="wrap_content" />
95
96   
97           
98    </LinearLayout>
99<!--
100    <TextView
101        android:id="@+id/imagen_utlizada_name"
102        android:layout_width="wrap_content"
103        android:layout_height="wrap_content"
104        android:layout_marginTop="5dp"
105        android:layout_marginLeft="5dp"
106        android:layout_marginRight="5dp"
107        android:text="" />
108 -->       
109   
110    <TextView
111        android:id="@+id/label_destinatario_cifrado"
112        android:layout_width="fill_parent"
113        android:layout_height="wrap_content"
114        android:layout_marginTop="10dp"
115        android:layout_marginLeft="5dp"
116        android:layout_marginRight="5dp"
117        android:gravity="center"
118        android:background="@drawable/bg_path_file_to_sign"
119        android:text="@string/verificar_titulo_lista_firmantes" />
120<!--     
121    <TextView
122        android:id="@+id/archivo_firmado_path"
123        android:layout_width="wrap_content"
124        android:layout_height="wrap_content"
125        android:layout_marginTop="5dp"
126        android:layout_marginLeft="5dp"
127        android:layout_marginRight="5dp"
128        android:text="" />
129 -->   
130   
131    <LinearLayout
132        android:layout_width="match_parent"
133        android:layout_height="0dp"
134        android:layout_weight="0.40" >
135 
136        <ListView
137            android:id="@+id/signatures_list"
138            style="@style/style_listviews"
139            android:layout_width="match_parent"
140            android:layout_height="match_parent"
141            android:choiceMode="singleChoice" />
142       
143    </LinearLayout>
144   
145    <LinearLayout
146        android:id="@+id/linearSpacingBottom"
147        android:layout_width="fill_parent"
148        android:layout_height="0dp"
149        android:layout_weight="0.04"
150        android:orientation="vertical" />
151     
152   <LinearLayout       
153        android:layout_width="match_parent"
154        android:layout_height="3dp"
155        android:background="#777777"/>
156 
157    <include
158        android:id="@+id/button_bar"
159        android:layout_width="match_parent"
160        android:layout_height="wrap_content"
161        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
162</LinearLayout>
Note: See TracBrowser for help on using the repository browser.