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

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

Corrección de error en layout de resultado de firma manuscrita sobre archivo pdf.

  • Property mode set to 100644
File size: 3.0 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_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/firmar_man_arch_para_firm" />
18    <TextView
19        android:id="@+id/archivo_original_a_firmar"
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/label_archivo_original"
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/firmar_man_img_path" />
37    <TextView
38        android:id="@+id/archivo_descifrado"
39        android:layout_width="wrap_content"
40        android:layout_height="wrap_content"
41        android:layout_marginTop="5dp"
42        android:layout_marginLeft="5dp"
43        android:layout_marginRight="5dp"
44        android:text="" />
45   
46    <TextView
47        android:id="@+id/label_destinatario_cifrado"
48        android:layout_width="fill_parent"
49        android:layout_height="wrap_content"
50        android:layout_marginTop="10dp"
51        android:layout_marginLeft="5dp"
52        android:layout_marginRight="5dp"
53        android:gravity="center"
54        android:background="@drawable/bg_path_file_to_sign"
55        android:text="@string/firmar_man_arch_firm" />
56    <TextView
57        android:id="@+id/destinatario"
58        android:layout_width="wrap_content"
59        android:layout_height="wrap_content"
60        android:layout_marginTop="5dp"
61        android:layout_marginLeft="5dp"
62        android:layout_marginRight="5dp"
63        android:text="" />
64   
65    <LinearLayout
66        android:id="@+id/linearSpacingBottom"
67        android:layout_width="fill_parent"
68        android:layout_height="0dp"
69        android:layout_weight="1"
70        android:orientation="vertical" />
71     
72   <LinearLayout       
73        android:layout_width="match_parent"
74        android:layout_height="3dp"
75        android:background="#777777"/>
76 
77    <include
78        android:id="@+id/button_bar"
79        android:layout_width="match_parent"
80        android:layout_height="wrap_content"
81        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
82</LinearLayout>
Note: See TracBrowser for help on using the repository browser.