source: dispositivos_moviles/TibisayMovil/res/layout/files_to_pdf_sign_item.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.6 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<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
26    android:layout_width="match_parent"
27    android:layout_height="match_parent"
28    android:background="@drawable/background_item"
29    android:gravity="center_vertical"
30    android:maxHeight="50dp"
31    android:minHeight="50dp"
32    android:orientation="horizontal" >
33
34    <ImageView
35        android:id="@+id/type_image"
36        android:layout_width="35dp"
37        android:layout_height="wrap_content"
38        android:layout_alignParentLeft="true"
39        android:layout_centerVertical="true"
40       
41        android:contentDescription="@string/type"
42         />
43
44    <LinearLayout
45        android:id="@+id/filename_data"
46        android:layout_width="wrap_content"
47        android:layout_height="fill_parent"
48        android:layout_centerVertical="true"
49        android:layout_toLeftOf="@+id/file_checkbox"
50        android:layout_toRightOf="@+id/type_image"
51        android:orientation="vertical" >
52
53        <TextView
54            android:id="@+id/filename_text"
55            style="@style/style_font_files"
56            android:layout_width="fill_parent"
57            android:layout_height="wrap_content" />
58
59        <TextView
60            android:id="@+id/filename_modified"
61            style="@style/style_font_date"
62            android:layout_width="fill_parent"
63            android:layout_height="wrap_content" />
64    </LinearLayout>
65
66    <CheckBox
67        android:id="@+id/file_check"
68        android:layout_width="wrap_content"
69        android:layout_height="wrap_content"
70        android:layout_alignParentRight="true"
71        android:layout_centerVertical="true"
72        android:layout_marginRight="10dp"
73        android:clickable="false"
74        android:focusable="false"
75        android:gravity="center" />
76
77</RelativeLayout>
Note: See TracBrowser for help on using the repository browser.