source: dispositivos_moviles/TibisayMovil/res/layout/document_inside_bdoc_item.xml @ 67541a6

Last change on this file since 67541a6 was 5147e01, checked in by Antonio Araujo Brett <aaraujo@…>, 11 years ago

Agregados archivos y nuevas clases para implementar interfaz de funcionalidades de verificación de archivo BDOC firmado electrónicamente, extracción de un archivo de un contenedor BDOC, visualizar archivo extraido de contenedor BDOC.

  • Property mode set to 100644
File size: 1.8 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="match_parent"
5    android:background="@drawable/background_item"
6    android:gravity="center_vertical"
7    android:maxHeight="50dp"
8    android:minHeight="50dp"
9    android:orientation="horizontal" >
10
11    <ImageView
12        android:id="@+id/type_image"
13        android:layout_width="35dp"
14        android:layout_height="wrap_content"
15        android:layout_alignParentLeft="true"
16        android:layout_centerVertical="true"
17        android:contentDescription="@string/type"
18        android:src="@drawable/ic_archivo" />
19
20    <LinearLayout
21        android:id="@+id/filename_data"
22        android:layout_width="wrap_content"
23        android:layout_height="fill_parent"
24        android:layout_centerVertical="true"
25        android:layout_toLeftOf="@+id/file_checkbox"
26        android:layout_toRightOf="@+id/type_image"
27        android:orientation="vertical" >
28
29        <TextView
30            android:id="@+id/filename_text"
31            style="@style/style_font_files"
32            android:layout_width="fill_parent"
33            android:layout_height="wrap_content" />
34
35        <TextView
36            android:id="@+id/filename_modified"
37            style="@style/style_font_date"
38            android:layout_width="fill_parent"
39            android:layout_height="wrap_content" />
40
41    </LinearLayout>
42<!--
43    <RadioButton
44        android:id="@+id/file_radio"
45        android:layout_width="wrap_content"
46        android:layout_height="wrap_content"
47        android:layout_alignParentRight="true"
48        android:layout_centerVertical="true"
49        android:layout_marginRight="10dp"
50        android:clickable="false"
51        android:focusable="false"
52        android:gravity="center" />
53-->       
54
55</RelativeLayout>
Note: See TracBrowser for help on using the repository browser.