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

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

Implementada la verificación de certificados duplicados al momento de agregar certificados de destinatarios para cifrar archivos. Creada Actividad CertificateToLoadActivity? para cargar certificado y realizar la verificación.

  • Property mode set to 100644
File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="match_parent"
5    android:orientation="vertical" >
6 
7   
8   
9    <TextView
10        android:id="@+id/certificate_to_load_description"
11        style="@style/style_description"
12        android:layout_width="fill_parent"
13        android:layout_height="wrap_content"
14        android:text="@string/share_description" />
15   
16   
17    <LinearLayout
18        android:layout_width="match_parent"
19        android:layout_height="wrap_content"
20        android:paddingLeft="5dp"
21        android:orientation="horizontal"
22        style="@style/style_path_file_browser">
23    <TextView
24        android:id="@+id/pathstring"
25        android:layout_width="wrap_content"
26        android:layout_height="wrap_content" 
27        style="@style/style_font_section" 
28        />
29       <TextView
30        android:id="@+id/path"
31        android:layout_width="wrap_content"
32        android:layout_height="wrap_content" 
33        style="@style/style_font_section"
34        />
35   
36    </LinearLayout>
37
38    <LinearLayout
39        android:layout_width="match_parent"
40        android:layout_height="0dp"
41        android:layout_weight="0.40" >
42
43        <ListView
44            android:id="@+id/file_list"
45            android:layout_width="match_parent"
46            android:layout_height="match_parent"
47            android:choiceMode="singleChoice"
48                        style="@style/style_listviews"
49                                  />         
50
51 
52           
53    </LinearLayout>
54 
55   <LinearLayout 
56       
57        android:layout_width="match_parent"
58        android:layout_height="3dp"
59        android:background="#777777"></LinearLayout>
60 
61    <include
62        android:id="@+id/button_bar"
63        android:layout_width="match_parent"
64        android:layout_height="wrap_content"
65        layout="@layout/actionbar_main" />
66
67</LinearLayout>
Note: See TracBrowser for help on using the repository browser.