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

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

*- Implementada funcionalidad de descifrar un archivo. Agregadas actividades para realizar operación de descifrado y mostrar resultados del archivo descifrado.

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