source: dispositivos_moviles/TibisayMovil/res/layout/sign.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: 6.0 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="match_parent"
34        android:layout_height="wrap_content"
35        android:text="@string/sign_status"
36        style="@style/style_description"
37        android:gravity="center"/>
38    <TextView
39        android:id="@+id/archivo_para_firmar"
40        android:layout_width="fill_parent"
41        android:layout_height="wrap_content"
42        android:layout_marginTop="10dp"
43        android:layout_marginLeft="5dp"
44        android:layout_marginRight="5dp"
45        android:gravity="center"
46        android:background="@drawable/bg_path_file_to_sign"
47        android:text="@string/verificar_titulo_lista_docs" />
48    <TextView
49        android:id="@+id/summary"
50        android:layout_width="match_parent"
51        android:layout_height="0dip"
52        android:layout_weight="0.5"
53        android:padding="15dp"
54        android:freezesText="true"
55        android:scrollbars="vertical" 
56        style="@style/style_font_files"
57        android:focusable="false"
58        android:fadeScrollbars="false"/>
59    <TextView
60        android:id="@+id/nosignedfiles"
61        android:layout_width="fill_parent"
62        android:layout_height="wrap_content"
63        android:layout_marginTop="10dp"
64        android:layout_marginLeft="5dp"
65        android:layout_marginRight="5dp"
66        android:gravity="center"
67        android:background="@drawable/bg_path_file_to_sign"
68        android:text="@string/nosignedfiles" />
69    <TextView
70        android:id="@+id/summary2"
71        android:layout_width="match_parent"
72        android:layout_height="0dip"
73        android:layout_weight="0.5"
74        android:padding="15dp"
75        android:freezesText="true"
76        android:scrollbars="vertical" 
77        style="@style/style_font_files"
78        android:focusable="false"
79        android:fadeScrollbars="false"/>
80
81    <LinearLayout
82        android:id="@+id/signing"
83        android:layout_width="match_parent"
84        android:layout_height="wrap_content"
85        android:orientation="vertical"
86        android:layout_margin="15dp">
87
88        <TextView
89            android:id="@+id/signing_label"
90            android:layout_width="wrap_content"
91            android:layout_height="wrap_content"
92            android:text="@string/signing_files"
93                    style="@style/style_font_files"/>
94
95        <ProgressBar
96            android:id="@+id/progress"
97            style="@android:style/Widget.ProgressBar.Horizontal"
98            android:layout_width="match_parent"
99            android:layout_height="wrap_content"
100            android:indeterminate="true" />
101
102    </LinearLayout>
103
104   
105<LinearLayout
106    android:baselineAligned="false"
107    android:layout_width="match_parent"
108    android:layout_height="wrap_content"   
109    android:weightSum="1"
110    style="@style/style_actionbar">
111
112    <LinearLayout
113        android:layout_width="match_parent"
114        android:layout_height="match_parent"
115        android:layout_weight="0.5"
116        android:background="@drawable/background_lower_menu"
117        android:gravity="center_horizontal"
118        android:id="@+id/button_finish_zone"
119        android:orientation="vertical" 
120         android:weightSum="1" >
121
122        <ImageView
123            android:id="@+id/button_finish"
124            android:layout_width="wrap_content"
125            android:layout_height="wrap_content"
126            android:enabled="false"
127            android:gravity="center"
128            android:src="@drawable/ic_finalizar_blanco"
129            android:layout_weight="0.8"
130             />
131        <TextView           
132            android:id="@+id/button_finish_text"
133            android:layout_width="wrap_content"
134            android:layout_height="wrap_content"
135            android:text="@string/finalizar"
136            android:gravity="center"
137            android:textColor="@color/actionbar_text"
138            android:layout_weight="0.2"/>
139    </LinearLayout>
140
141    <LinearLayout
142        android:layout_width="match_parent"
143        android:layout_height="match_parent"
144        android:layout_weight="0.5"
145        android:background="@drawable/background_lower_menu"
146        android:gravity="center_horizontal"
147        android:id="@+id/button_share_zone"
148        android:orientation="vertical"
149        android:weightSum="1" >
150
151        <ImageView
152            android:id="@+id/button_share"
153            android:layout_width="wrap_content"
154            android:layout_height="wrap_content"
155            android:gravity="center"
156            android:src="@drawable/ic_compartir_blanco"
157            android:layout_weight="0.8"
158             />
159       
160        <TextView           
161            android:id="@+id/button_share_text"
162            android:layout_width="wrap_content"
163            android:layout_height="wrap_content"
164            android:text="@string/compartir_b"
165            android:textColor="@color/actionbar_text"
166            android:layout_weight="0.2"
167                        android:gravity="center"
168            />
169    </LinearLayout>
170</LinearLayout>
171</LinearLayout>
Note: See TracBrowser for help on using the repository browser.