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

Last change on this file since 67541a6 was 288126d, checked in by Jose Ruiz <joseruiz@…>, 11 years ago

Manejo de repositorio de certificados y firma con pkcs7

  • Property mode set to 100644
File size: 4.8 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    xmlns:tools="http://schemas.android.com/tools"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    android:orientation="vertical">
7   
8    <TextView
9        android:id="@+id/data_header"
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/certificate_data" />
18
19    <TextView
20        android:id="@+id/cert_data"
21        android:layout_width="match_parent"
22        android:layout_height="0dip"
23        android:layout_weight="0.5"
24                android:layout_margin="10dp"       
25        android:padding="10dp"
26        android:freezesText="true"
27        android:scrollbars="vertical" 
28        android:cacheColorHint="@android:color/transparent"
29        android:fadeScrollbars="false"
30       android:textColor="#7a7a7a"
31        android:textSize="14sp"
32        />
33   
34    <TextView
35        android:id="@+id/files_to_sign"
36        android:layout_width="fill_parent"
37        android:layout_height="wrap_content"
38        android:layout_marginTop="10dp"
39        android:layout_marginLeft="5dp"
40        android:layout_marginRight="5dp"
41        android:gravity="center"
42        android:background="@drawable/bg_path_file_to_sign"
43        android:text="@string/files_to_sign" />
44
45    <TextView
46        android:id="@+id/docs_data"
47        android:layout_width="match_parent"
48        android:layout_height="0dip"
49        android:layout_weight="0.5"
50                android:layout_margin="10dp"       
51        android:padding="10dp"
52        android:freezesText="true"
53        android:scrollbars="vertical" 
54        android:cacheColorHint="@android:color/transparent"
55        android:fadeScrollbars="false"
56       android:textColor="#7a7a7a"
57        android:textSize="14sp"
58        />
59    <LinearLayout 
60        android:id="@+id/lower_container"
61        android:layout_width="fill_parent"
62        android:layout_height="wrap_content"
63        android:orientation="horizontal"
64        android:weightSum="1"
65        >
66
67     <LinearLayout 
68        android:id="@+id/fixing"
69        android:layout_width="0dp"
70        android:layout_height="wrap_content"
71        android:orientation="horizontal"
72        android:layout_weight="0.5"
73        >
74<!--     <LinearLayout -->
75<!--         android:id="@+id/validation_status" -->
76<!--         android:layout_width="wrap_content" -->
77<!--         android:layout_height="wrap_content" -->
78<!--         android:orientation="vertical" -->
79<!--         android:padding="10dp" -->
80<!--         > -->
81
82<!--         <TextView -->
83<!--             android:id="@+id/validating" -->
84<!--             android:layout_width="wrap_content" -->
85<!--             android:layout_height="wrap_content" -->
86<!--             android:text="@string/checking_certificate" -->
87<!--             android:textAppearance="?android:attr/textAppearanceSmall" -->
88<!--        android:textColor="#212121" -->
89<!--        android:textSize="12sp"  /> -->
90
91<!--         <ProgressBar -->
92<!--             android:id="@+id/progress" -->
93<!--             style="@android:style/Widget.ProgressBar.Horizontal" -->
94           
95<!--             android:layout_width="match_parent" -->
96<!--             android:layout_height="wrap_content" -->
97<!--             android:indeterminate="true" /> -->
98
99<!--     </LinearLayout> -->
100    </LinearLayout>
101
102    <!--
103    <ImageView tools:ignore="ContentDescription"
104        android:id="@+id/divider"
105        android:layout_width="match_parent"
106        android:layout_height="wrap_content"
107         android:layout_weight="0.5"
108        android:src="@drawable/divider_horizontal" /> -->
109
110   
111<!--     <CheckBox -->
112<!--         android:id="@+id/embed_signature" -->
113<!--         android:layout_width="0dp" -->
114<!--         android:layout_height="wrap_content" -->
115<!--         android:layout_gravity="center" -->
116<!--          android:layout_weight="0.5" -->
117<!--         android:enabled="false" -->
118<!--         android:layout_marginLeft="10dp" -->
119<!--         android:gravity="left|center_vertical" -->
120<!--         android:text="@string/pdf_embed_signature" -->
121<!--        android:textColor="#212121" -->
122<!--        android:textSize="12sp" /> -->
123</LinearLayout>
124   
125   <LinearLayout 
126       
127        android:layout_width="match_parent"
128        android:layout_height="3dp"
129        android:background="#777777"></LinearLayout>
130   
131    <include
132        android:id="@+id/button_bar"
133        android:layout_width="match_parent"
134        android:layout_height="wrap_content"
135        layout="@layout/cancel_accept_buttons" />
136
137</LinearLayout>
Note: See TracBrowser for help on using the repository browser.