source: dispositivos_moviles/TibisayMovil/res/layout/activity_sign_result_handwritten_signature.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: 4.5 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_firmar"
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/firmar_man_arch_para_firm" />
41    <TextView
42        android:id="@+id/archivo_original_a_firmar"
43        android:layout_width="wrap_content"
44        android:layout_height="wrap_content"
45        android:layout_marginTop="5dp"
46        android:layout_marginLeft="5dp"
47        android:layout_marginRight="5dp"
48        android:text="" />
49   
50    <TextView
51        android:id="@+id/label_archivo_original"
52        android:layout_width="fill_parent"
53        android:layout_height="wrap_content"
54        android:layout_marginTop="10dp"
55        android:layout_marginLeft="5dp"
56        android:layout_marginRight="5dp"
57        android:gravity="center"
58        android:background="@drawable/bg_path_file_to_sign"
59        android:text="@string/firmar_man_img_path" />
60    <TextView
61        android:id="@+id/archivo_descifrado"
62        android:layout_width="wrap_content"
63        android:layout_height="wrap_content"
64        android:layout_marginTop="5dp"
65        android:layout_marginLeft="5dp"
66        android:layout_marginRight="5dp"
67        android:text="" />
68   
69    <TextView
70        android:id="@+id/label_destinatario_cifrado"
71        android:layout_width="fill_parent"
72        android:layout_height="wrap_content"
73        android:layout_marginTop="10dp"
74        android:layout_marginLeft="5dp"
75        android:layout_marginRight="5dp"
76        android:gravity="center"
77        android:background="@drawable/bg_path_file_to_sign"
78        android:text="@string/firmar_man_arch_firm" />
79   
80
81    <LinearLayout
82        android:id="@+id/layout_decrypted_file_and_arrow"
83        android:layout_width="match_parent"
84        android:layout_height="wrap_content"
85        >
86
87        <ImageView
88        android:id="@+id/type_image"
89        android:layout_width="35dp"
90        android:layout_height="wrap_content"
91        android:layout_alignParentLeft="true"
92        android:layout_centerVertical="true"
93        android:contentDescription="@string/type"
94        android:src="@drawable/ic_archivo_verde" />
95       
96        <TextView
97        android:id="@+id/destinatario"
98        android:layout_width="wrap_content"
99        android:layout_height="wrap_content"
100        android:layout_marginTop="5dp"
101        android:layout_marginLeft="5dp"
102        android:layout_marginRight="5dp"
103        android:text="" />
104               
105   
106        <ImageView
107            android:id="@+id/arrow_show_errors"
108            android:layout_width="wrap_content"
109            android:layout_height="wrap_content"
110            android:layout_gravity="right"
111            android:src="@drawable/flecha_siguiente" />
112   
113    </LinearLayout>
114   
115    <LinearLayout
116        android:id="@+id/linearSpacingBottom"
117        android:layout_width="fill_parent"
118        android:layout_height="0dp"
119        android:layout_weight="1"
120        android:orientation="vertical" />
121     
122   <LinearLayout       
123        android:layout_width="match_parent"
124        android:layout_height="3dp"
125        android:background="#777777"/>
126 
127    <include
128        android:id="@+id/button_bar"
129        android:layout_width="match_parent"
130        android:layout_height="wrap_content"
131        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
132</LinearLayout>
Note: See TracBrowser for help on using the repository browser.