source: dispositivos_moviles/TibisayMovil/res/layout/activity_file_to_share.xml

Last change on this file 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: 2.7 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    android:layout_width="match_parent"
27    android:layout_height="match_parent"
28    android:orientation="vertical" >
29 
30   
31   
32    <TextView
33        android:id="@+id/pkcs12_to_decrypt_description"
34        style="@style/style_description"
35        android:layout_width="fill_parent"
36        android:layout_height="wrap_content"
37        android:text="@string/share_description" />
38   
39   
40    <LinearLayout
41        android:layout_width="match_parent"
42        android:layout_height="wrap_content"
43        android:paddingLeft="5dp"
44        android:orientation="horizontal"
45        style="@style/style_path_file_browser">
46    <TextView
47        android:id="@+id/pathstring"
48        android:layout_width="wrap_content"
49        android:layout_height="wrap_content" 
50        style="@style/style_font_section" 
51        />
52       <TextView
53        android:id="@+id/path"
54        android:layout_width="wrap_content"
55        android:layout_height="wrap_content" 
56        style="@style/style_font_section"
57        />
58   
59    </LinearLayout>
60
61    <LinearLayout
62        android:layout_width="match_parent"
63        android:layout_height="0dp"
64        android:layout_weight="0.40" >
65
66        <ListView
67            android:id="@+id/file_list"
68            android:layout_width="match_parent"
69            android:layout_height="match_parent"
70            android:choiceMode="singleChoice"
71                        style="@style/style_listviews"
72                                  />         
73
74 
75           
76    </LinearLayout>
77 
78   <LinearLayout 
79       
80        android:layout_width="match_parent"
81        android:layout_height="3dp"
82        android:background="#777777"></LinearLayout>
83 
84    <include
85        android:id="@+id/button_bar"
86        android:layout_width="match_parent"
87        android:layout_height="wrap_content"
88        layout="@layout/actionbar_main" />
89
90</LinearLayout>
Note: See TracBrowser for help on using the repository browser.