source: dispositivos_moviles/TibisayMovil/res/layout/activity_verify_result_bdoc.xml @ 5147e01

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

Agregados archivos y nuevas clases para implementar interfaz de funcionalidades de verificación de archivo BDOC firmado electrónicamente, extracción de un archivo de un contenedor BDOC, visualizar archivo extraido de contenedor BDOC.

  • Property mode set to 100644
File size: 3.8 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/sel_sign_rel_layout">
7   
8    <TextView
9        android:id="@+id/archivo_para_firmar"
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    <TextView
19        android:id="@+id/archivo_para_firmar_path"
20        android:layout_width="wrap_content"
21        android:layout_height="wrap_content"
22        android:layout_marginTop="5dp"
23        android:layout_marginLeft="5dp"
24        android:layout_marginRight="5dp"
25        android:text="" />
26   
27    <TextView
28        android:id="@+id/imagen_utilizada"
29        android:layout_width="fill_parent"
30        android:layout_height="wrap_content"
31        android:layout_marginTop="10dp"
32        android:layout_marginLeft="5dp"
33        android:layout_marginRight="5dp"
34        android:gravity="center"
35        android:background="@drawable/bg_path_file_to_sign"
36        android:text="@string/verificar_titulo_lista_docs" />
37
38        <LinearLayout
39        android:layout_width="match_parent"
40        android:layout_height="0dp"
41        android:layout_weight="0.40" >
42
43        <ListView
44            android:id="@+id/documents_list"
45            style="@style/style_listviews"
46            android:layout_width="match_parent"
47            android:layout_height="match_parent"
48            android:choiceMode="singleChoice" />
49       
50    </LinearLayout>
51<!--
52    <TextView
53        android:id="@+id/imagen_utlizada_name"
54        android:layout_width="wrap_content"
55        android:layout_height="wrap_content"
56        android:layout_marginTop="5dp"
57        android:layout_marginLeft="5dp"
58        android:layout_marginRight="5dp"
59        android:text="" />
60 -->       
61   
62    <TextView
63        android:id="@+id/archivo_firmado"
64        android:layout_width="fill_parent"
65        android:layout_height="wrap_content"
66        android:layout_marginTop="10dp"
67        android:layout_marginLeft="5dp"
68        android:layout_marginRight="5dp"
69        android:gravity="center"
70        android:background="@drawable/bg_path_file_to_sign"
71        android:text="@string/verificar_titulo_lista_firmantes" />
72<!--     
73    <TextView
74        android:id="@+id/archivo_firmado_path"
75        android:layout_width="wrap_content"
76        android:layout_height="wrap_content"
77        android:layout_marginTop="5dp"
78        android:layout_marginLeft="5dp"
79        android:layout_marginRight="5dp"
80        android:text="" />
81 -->   
82   
83    <LinearLayout
84        android:layout_width="match_parent"
85        android:layout_height="0dp"
86        android:layout_weight="0.40" >
87 
88        <ListView
89            android:id="@+id/signatures_list"
90            style="@style/style_listviews"
91            android:layout_width="match_parent"
92            android:layout_height="match_parent"
93            android:choiceMode="singleChoice" />
94       
95    </LinearLayout>
96   
97    <LinearLayout
98        android:id="@+id/linearSpacingBottom"
99        android:layout_width="fill_parent"
100        android:layout_height="0dp"
101        android:layout_weight="0.11"
102        android:orientation="vertical" />
103     
104   <LinearLayout       
105        android:layout_width="match_parent"
106        android:layout_height="3dp"
107        android:background="#777777"/>
108 
109    <include
110        android:id="@+id/button_bar"
111        android:layout_width="match_parent"
112        android:layout_height="wrap_content"
113        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
114</LinearLayout>
Note: See TracBrowser for help on using the repository browser.