source: dispositivos_moviles/TibisayMovil/res/layout/activity_verify_result_bdoc.xml @ 67541a6

Last change on this file since 67541a6 was 31cf7cf, checked in by Antonio Araujo Brett <aaraujo@…>, 11 years ago

Arreglo de color en flecha para desplegar errores en firma electrónica al momento de verificar un archivo BDOC firmado.

  • Property mode set to 100644
File size: 4.3 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_gris" />
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_docs" />
50
51        <LinearLayout
52        android:layout_width="match_parent"
53        android:layout_height="0dp"
54        android:layout_weight="0.40" >
55
56        <ListView
57            android:id="@+id/documents_list"
58            style="@style/style_listviews"
59            android:layout_width="match_parent"
60            android:layout_height="match_parent"
61            android:choiceMode="singleChoice" />
62       
63    </LinearLayout>
64<!--
65    <TextView
66        android:id="@+id/imagen_utlizada_name"
67        android:layout_width="wrap_content"
68        android:layout_height="wrap_content"
69        android:layout_marginTop="5dp"
70        android:layout_marginLeft="5dp"
71        android:layout_marginRight="5dp"
72        android:text="" />
73 -->       
74   
75    <TextView
76        android:id="@+id/label_destinatario_cifrado"
77        android:layout_width="fill_parent"
78        android:layout_height="wrap_content"
79        android:layout_marginTop="10dp"
80        android:layout_marginLeft="5dp"
81        android:layout_marginRight="5dp"
82        android:gravity="center"
83        android:background="@drawable/bg_path_file_to_sign"
84        android:text="@string/verificar_titulo_lista_firmantes" />
85<!--     
86    <TextView
87        android:id="@+id/archivo_firmado_path"
88        android:layout_width="wrap_content"
89        android:layout_height="wrap_content"
90        android:layout_marginTop="5dp"
91        android:layout_marginLeft="5dp"
92        android:layout_marginRight="5dp"
93        android:text="" />
94 -->   
95   
96    <LinearLayout
97        android:layout_width="match_parent"
98        android:layout_height="0dp"
99        android:layout_weight="0.40" >
100 
101        <ListView
102            android:id="@+id/signatures_list"
103            style="@style/style_listviews"
104            android:layout_width="match_parent"
105            android:layout_height="match_parent"
106            android:choiceMode="singleChoice" />
107       
108    </LinearLayout>
109   
110    <LinearLayout
111        android:id="@+id/linearSpacingBottom"
112        android:layout_width="fill_parent"
113        android:layout_height="0dp"
114        android:layout_weight="0.11"
115        android:orientation="vertical" />
116     
117   <LinearLayout       
118        android:layout_width="match_parent"
119        android:layout_height="3dp"
120        android:background="#777777"/>
121 
122    <include
123        android:id="@+id/button_bar"
124        android:layout_width="match_parent"
125        android:layout_height="wrap_content"
126        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
127</LinearLayout>
Note: See TracBrowser for help on using the repository browser.