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

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

Agregado encabezado de licencia a archivos fuentes.

  • Property mode set to 100644
File size: 5.1 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_gris" />
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_docs" />
73
74        <LinearLayout
75        android:layout_width="match_parent"
76        android:layout_height="0dp"
77        android:layout_weight="0.40" >
78
79        <ListView
80            android:id="@+id/documents_list"
81            style="@style/style_listviews"
82            android:layout_width="match_parent"
83            android:layout_height="match_parent"
84            android:choiceMode="singleChoice" />
85       
86    </LinearLayout>
87<!--
88    <TextView
89        android:id="@+id/imagen_utlizada_name"
90        android:layout_width="wrap_content"
91        android:layout_height="wrap_content"
92        android:layout_marginTop="5dp"
93        android:layout_marginLeft="5dp"
94        android:layout_marginRight="5dp"
95        android:text="" />
96 -->       
97   
98    <TextView
99        android:id="@+id/label_destinatario_cifrado"
100        android:layout_width="fill_parent"
101        android:layout_height="wrap_content"
102        android:layout_marginTop="10dp"
103        android:layout_marginLeft="5dp"
104        android:layout_marginRight="5dp"
105        android:gravity="center"
106        android:background="@drawable/bg_path_file_to_sign"
107        android:text="@string/verificar_titulo_lista_firmantes" />
108<!--     
109    <TextView
110        android:id="@+id/archivo_firmado_path"
111        android:layout_width="wrap_content"
112        android:layout_height="wrap_content"
113        android:layout_marginTop="5dp"
114        android:layout_marginLeft="5dp"
115        android:layout_marginRight="5dp"
116        android:text="" />
117 -->   
118   
119    <LinearLayout
120        android:layout_width="match_parent"
121        android:layout_height="0dp"
122        android:layout_weight="0.40" >
123 
124        <ListView
125            android:id="@+id/signatures_list"
126            style="@style/style_listviews"
127            android:layout_width="match_parent"
128            android:layout_height="match_parent"
129            android:choiceMode="singleChoice" />
130       
131    </LinearLayout>
132   
133    <LinearLayout
134        android:id="@+id/linearSpacingBottom"
135        android:layout_width="fill_parent"
136        android:layout_height="0dp"
137        android:layout_weight="0.11"
138        android:orientation="vertical" />
139     
140   <LinearLayout       
141        android:layout_width="match_parent"
142        android:layout_height="3dp"
143        android:background="#777777"/>
144 
145    <include
146        android:id="@+id/button_bar"
147        android:layout_width="match_parent"
148        android:layout_height="wrap_content"
149        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
150</LinearLayout>
Note: See TracBrowser for help on using the repository browser.