source: dispositivos_moviles/TibisayMovil/res/layout/cert_validation.xml @ 8379cd8

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

Agregado encabezado de licencia a archivos fuentes.

  • Property mode set to 100644
File size: 5.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2
3<!--
4/*
5Tibisay Movil
6
7Copyright (C) 2013 Antonio Araujo (aaraujo@cenditel.gob.ve), Jose Ruiz
8(jruiz@cenditel.gob.ve), Fundacion Centro Nacional de Desarrollo e
9Investigacion en Tecnologias Libres - CENDITEL.
10
11La Fundación CENDITEL concede permiso para usar, copiar, distribuir y/o
12modificar este programa, reconociendo el derecho que la humanidad posee al
13libre acceso al conocimiento, bajo los términos de la licencia de software
14GPL versión 2.0 de la Free Software Foundation.
15
16Este programa se distribuye con la esperanza de que sea util, pero SIN
17NINGUNA GARANTIA; tampoco las implicitas garantias de MERCANTILIDAD o
18ADECUACION A UN PROPOSITO PARTICULAR.
19
20Para mayor información sobre los términos de la licencia ver el archivo
21llamado "gpl-2.0.txt" en ingles.
22*/
23 -->
24
25<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
26    xmlns:tools="http://schemas.android.com/tools"
27    android:layout_width="match_parent"
28    android:layout_height="match_parent"
29    android:orientation="vertical">
30   
31    <TextView
32        android:id="@+id/data_header"
33        android:layout_width="fill_parent"
34        android:layout_height="wrap_content"
35        android:layout_marginTop="10dp"
36        android:layout_marginLeft="5dp"
37        android:layout_marginRight="5dp"
38        android:gravity="center"
39        android:background="@drawable/bg_path_file_to_sign"
40        android:text="@string/certificate_data" />
41
42    <TextView
43        android:id="@+id/cert_data"
44        android:layout_width="match_parent"
45        android:layout_height="0dip"
46        android:layout_weight="0.5"
47                android:layout_margin="10dp"       
48        android:padding="10dp"
49        android:freezesText="true"
50        android:scrollbars="vertical" 
51        android:cacheColorHint="@android:color/transparent"
52        android:fadeScrollbars="false"
53       android:textColor="#7a7a7a"
54        android:textSize="14sp"
55        />
56   
57    <TextView
58        android:id="@+id/files_to_sign"
59        android:layout_width="fill_parent"
60        android:layout_height="wrap_content"
61        android:layout_marginTop="10dp"
62        android:layout_marginLeft="5dp"
63        android:layout_marginRight="5dp"
64        android:gravity="center"
65        android:background="@drawable/bg_path_file_to_sign"
66        android:text="@string/files_to_sign" />
67
68    <TextView
69        android:id="@+id/docs_data"
70        android:layout_width="match_parent"
71        android:layout_height="0dip"
72        android:layout_weight="0.5"
73                android:layout_margin="10dp"       
74        android:padding="10dp"
75        android:freezesText="true"
76        android:scrollbars="vertical" 
77        android:cacheColorHint="@android:color/transparent"
78        android:fadeScrollbars="false"
79       android:textColor="#7a7a7a"
80        android:textSize="14sp"
81        />
82    <LinearLayout 
83        android:id="@+id/lower_container"
84        android:layout_width="fill_parent"
85        android:layout_height="wrap_content"
86        android:orientation="horizontal"
87        android:weightSum="1"
88        >
89
90     <LinearLayout 
91        android:id="@+id/fixing"
92        android:layout_width="0dp"
93        android:layout_height="wrap_content"
94        android:orientation="horizontal"
95        android:layout_weight="0.5"
96        >
97<!--     <LinearLayout -->
98<!--         android:id="@+id/validation_status" -->
99<!--         android:layout_width="wrap_content" -->
100<!--         android:layout_height="wrap_content" -->
101<!--         android:orientation="vertical" -->
102<!--         android:padding="10dp" -->
103<!--         > -->
104
105<!--         <TextView -->
106<!--             android:id="@+id/validating" -->
107<!--             android:layout_width="wrap_content" -->
108<!--             android:layout_height="wrap_content" -->
109<!--             android:text="@string/checking_certificate" -->
110<!--             android:textAppearance="?android:attr/textAppearanceSmall" -->
111<!--        android:textColor="#212121" -->
112<!--        android:textSize="12sp"  /> -->
113
114<!--         <ProgressBar -->
115<!--             android:id="@+id/progress" -->
116<!--             style="@android:style/Widget.ProgressBar.Horizontal" -->
117           
118<!--             android:layout_width="match_parent" -->
119<!--             android:layout_height="wrap_content" -->
120<!--             android:indeterminate="true" /> -->
121
122<!--     </LinearLayout> -->
123    </LinearLayout>
124
125    <!--
126    <ImageView tools:ignore="ContentDescription"
127        android:id="@+id/divider"
128        android:layout_width="match_parent"
129        android:layout_height="wrap_content"
130         android:layout_weight="0.5"
131        android:src="@drawable/divider_horizontal" /> -->
132
133   
134<!--     <CheckBox -->
135<!--         android:id="@+id/embed_signature" -->
136<!--         android:layout_width="0dp" -->
137<!--         android:layout_height="wrap_content" -->
138<!--         android:layout_gravity="center" -->
139<!--          android:layout_weight="0.5" -->
140<!--         android:enabled="false" -->
141<!--         android:layout_marginLeft="10dp" -->
142<!--         android:gravity="left|center_vertical" -->
143<!--         android:text="@string/pdf_embed_signature" -->
144<!--        android:textColor="#212121" -->
145<!--        android:textSize="12sp" /> -->
146</LinearLayout>
147   
148   <LinearLayout 
149       
150        android:layout_width="match_parent"
151        android:layout_height="3dp"
152        android:background="#777777"></LinearLayout>
153   
154    <include
155        android:id="@+id/button_bar"
156        android:layout_width="match_parent"
157        android:layout_height="wrap_content"
158        layout="@layout/cancel_accept_buttons" />
159
160</LinearLayout>
Note: See TracBrowser for help on using the repository browser.