source: dispositivos_moviles/TibisayMovil/res/layout/activity_decryption_result.xml @ ca6582b

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

*- Implementada funcionalidad para verificar firma electrónica de documento PDF. Se agregó actividad para desplegar los resultados de la firma de un documento PDF.

  • Property mode set to 100644
File size: 2.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/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_marginLeft="5dp"
13        android:layout_marginRight="5dp"
14        android:layout_marginTop="10dp"
15        android:background="@drawable/bg_path_file_to_sign"
16        android:gravity="center"
17        android:text="@string/label_archivo_a_descifrar" />
18
19    <TextView
20        android:id="@+id/archivo_original_pdf"
21        android:layout_width="wrap_content"
22        android:layout_height="wrap_content"
23        android:layout_marginTop="5dp"
24        android:layout_marginLeft="5dp"
25        android:layout_marginRight="5dp"
26        android:text="" />
27   
28    <TextView
29        android:id="@+id/label_archivo_original"
30        android:layout_width="fill_parent"
31        android:layout_height="wrap_content"
32        android:layout_marginLeft="5dp"
33        android:layout_marginRight="5dp"
34        android:layout_marginTop="10dp"
35        android:background="@drawable/bg_path_file_to_sign"
36        android:gravity="center"
37        android:text="@string/label_archivo_descifrado" />
38
39    <LinearLayout
40        android:id="@+id/layout_decrypted_file_and_arrow"
41        android:layout_width="match_parent"
42        android:layout_height="wrap_content" >
43
44        <TextView
45                android:id="@+id/archivo_descifrado"
46                android:layout_width="wrap_content"
47                android:layout_height="wrap_content"
48                android:layout_marginTop="5dp"
49                android:layout_marginLeft="5dp"
50                android:layout_marginRight="5dp"
51                android:layout_weight="0.96" />
52               
53   
54        <ImageView
55            android:id="@+id/arrow_show_errors"
56            android:layout_width="wrap_content"
57            android:layout_height="wrap_content"
58            android:layout_gravity="right"
59            android:src="@drawable/flecha_siguiente" />
60   
61    </LinearLayout>
62   
63    <LinearLayout
64        android:id="@+id/linearSpacingBottom"
65        android:layout_width="fill_parent"
66        android:layout_height="0dp"
67        android:layout_weight="1"
68        android:orientation="vertical" />
69     
70   <LinearLayout       
71        android:layout_width="match_parent"
72        android:layout_height="3dp"
73        android:background="#777777"/>
74 
75    <include
76        android:id="@+id/button_bar"
77        android:layout_width="match_parent"
78        android:layout_height="wrap_content"
79        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
80</LinearLayout>
Note: See TracBrowser for help on using the repository browser.