source: dispositivos_moviles/TibisayMovil/res/layout/cert_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: 3.2 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<!-- Copyright (C) 2011 The Android Open Source Project
26
27     Licensed under the Apache License, Version 2.0 (the "License");
28     you may not use this file except in compliance with the License.
29     You may obtain a copy of the License at
30
31          http://www.apache.org/licenses/LICENSE-2.0
32
33     Unless required by applicable law or agreed to in writing, software
34     distributed under the License is distributed on an "AS IS" BASIS,
35     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
36     See the License for the specific language governing permissions and
37     limitations under the License.
38-->
39
40<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
41    android:layout_width="match_parent"
42    android:layout_height="wrap_content"
43    android:gravity="center_vertical"
44    android:paddingRight="?android:attr/scrollbarSize"
45    android:background="@drawable/background_item"
46    android:padding="15dip"
47   
48    >
49    <RelativeLayout
50        android:layout_width="0px"
51        android:layout_height="wrap_content"
52        android:layout_weight="1"
53        >
54        <TextView
55            android:id="@+id/cert_item_alias"
56            android:layout_width="match_parent"
57            android:layout_height="wrap_content"
58            android:singleLine="true"
59            style="@style/style_font_files"
60            android:ellipsize="marquee"
61            android:fadingEdge="horizontal"
62        />
63        <TextView
64            android:id="@+id/cert_item_subject"
65            android:layout_width="match_parent"
66            android:layout_height="wrap_content"
67            android:layout_below="@id/cert_item_alias"
68            android:layout_alignLeft="@id/cert_item_alias"
69            style="@style/style_font_date"
70        />
71    </RelativeLayout>
72   
73   
74    <CheckBox
75        android:id="@+id/cert_item_selected"
76        android:layout_width="wrap_content"
77        android:layout_height="wrap_content"
78        android:gravity="center_vertical"
79        android:clickable="false"
80        android:focusable="false"
81        android:layout_weight="0"
82       
83    /> 
84   
85   
86    <!--
87    <RadioButton
88        android:id="@+id/cert_item_selected"
89        android:layout_width="wrap_content"
90        android:layout_height="wrap_content"
91        android:gravity="center_vertical"
92        android:clickable="false"
93        android:focusable="false"
94        android:layout_weight="0"
95    /> -->
96</LinearLayout>
Note: See TracBrowser for help on using the repository browser.