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

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

*- Modificaciones en actividad para ejecutar cifrado de un archivo a través de una tarea asíncrona (AsyncTask?). Se muestra un diálogo de progreso durante el proceso de cifrado.

  • Property mode set to 100644
File size: 3.1 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        <ImageView
45        android:id="@+id/type_image"
46        android:layout_width="35dp"
47        android:layout_height="wrap_content"
48        android:layout_alignParentLeft="true"
49        android:layout_centerVertical="true"
50        android:contentDescription="@string/type"
51        android:src="@drawable/ic_archivo" />
52       
53        <TextView
54                android:id="@+id/archivo_descifrado"
55                android:layout_width="wrap_content"
56                android:layout_height="wrap_content"
57                android:layout_marginTop="5dp"
58                android:layout_marginLeft="5dp"
59                android:layout_marginRight="5dp"
60                android:layout_weight="0.96" />
61               
62   
63        <ImageView
64            android:id="@+id/arrow_show_errors"
65            android:layout_width="wrap_content"
66            android:layout_height="wrap_content"
67            android:layout_gravity="right"
68            android:src="@drawable/flecha_siguiente" />
69   
70    </LinearLayout>
71   
72    <LinearLayout
73        android:id="@+id/linearSpacingBottom"
74        android:layout_width="fill_parent"
75        android:layout_height="0dp"
76        android:layout_weight="1"
77        android:orientation="vertical" />
78     
79   <LinearLayout       
80        android:layout_width="match_parent"
81        android:layout_height="3dp"
82        android:background="#777777"/>
83 
84    <include
85        android:id="@+id/button_bar"
86        android:layout_width="match_parent"
87        android:layout_height="wrap_content"
88        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
89</LinearLayout>
Note: See TracBrowser for help on using the repository browser.