source: dispositivos_moviles/TibisayMovil/res/layout/recipient_certificate_info.xml @ ca6582b

Last change on this file since ca6582b was 4528953, checked in by Antonio Araujo Brett <aaraujo@…>, 11 years ago

*- Inicio de funcionalidad de gestión de certificados para cifrar archivos. Se pueden agregar y eliminar certificados. Agregada actividad EncryptionCertificatesActivity?.

  • Property mode set to 100644
File size: 1.3 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    <LinearLayout
12        android:layout_width="fill_parent"
13        android:layout_height="wrap_content" >
14
15        <ImageView
16            android:id="@+id/type_image"
17            android:layout_width="35dp"
18            android:layout_height="wrap_content"
19            android:contentDescription="@string/type"
20            android:src="@drawable/ic_archivo" />
21
22        <LinearLayout
23            android:id="@+id/filename_data"
24            android:layout_width="wrap_content"
25            android:layout_height="wrap_content"
26            android:layout_weight="5.48"
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="fill_parent" />
34
35        </LinearLayout>
36    </LinearLayout>
37
38</RelativeLayout>
Note: See TracBrowser for help on using the repository browser.