source: dispositivos_moviles/TibisayMovil/res/layout/activity_decryption_result.xml @ 58c7f6a

Last change on this file since 58c7f6a 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: 3.9 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_marginLeft="5dp"
36        android:layout_marginRight="5dp"
37        android:layout_marginTop="10dp"
38        android:background="@drawable/bg_path_file_to_sign"
39        android:gravity="center"
40        android:text="@string/label_archivo_a_descifrar" />
41
42    <TextView
43        android:id="@+id/archivo_original_pdf"
44        android:layout_width="wrap_content"
45        android:layout_height="wrap_content"
46        android:layout_marginTop="5dp"
47        android:layout_marginLeft="5dp"
48        android:layout_marginRight="5dp"
49        android:text="" />
50   
51    <TextView
52        android:id="@+id/label_archivo_original"
53        android:layout_width="fill_parent"
54        android:layout_height="wrap_content"
55        android:layout_marginLeft="5dp"
56        android:layout_marginRight="5dp"
57        android:layout_marginTop="10dp"
58        android:background="@drawable/bg_path_file_to_sign"
59        android:gravity="center"
60        android:text="@string/label_archivo_descifrado" />
61
62    <LinearLayout
63        android:id="@+id/layout_decrypted_file_and_arrow"
64        android:layout_width="match_parent"
65        android:layout_height="wrap_content" >
66
67        <ImageView
68        android:id="@+id/type_image"
69        android:layout_width="35dp"
70        android:layout_height="wrap_content"
71        android:layout_alignParentLeft="true"
72        android:layout_centerVertical="true"
73        android:contentDescription="@string/type"
74        android:src="@drawable/ic_archivo_verde" />
75       
76        <TextView
77                android:id="@+id/archivo_descifrado"
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:layout_weight="0.96" />
84               
85   
86        <ImageView
87            android:id="@+id/arrow_show_errors"
88            android:layout_width="wrap_content"
89            android:layout_height="wrap_content"
90            android:layout_gravity="right"
91            android:src="@drawable/flecha_siguiente" />
92   
93    </LinearLayout>
94   
95    <LinearLayout
96        android:id="@+id/linearSpacingBottom"
97        android:layout_width="fill_parent"
98        android:layout_height="0dp"
99        android:layout_weight="1"
100        android:orientation="vertical" />
101     
102   <LinearLayout       
103        android:layout_width="match_parent"
104        android:layout_height="3dp"
105        android:background="#777777"/>
106 
107    <include
108        android:id="@+id/button_bar"
109        android:layout_width="match_parent"
110        android:layout_height="wrap_content"
111        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
112</LinearLayout>
Note: See TracBrowser for help on using the repository browser.