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

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

*- Implementada funcionalidad de descifrar un archivo. Agregadas actividades para realizar operación de descifrado y mostrar resultados del archivo descifrado.

  • 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    <TextView
8        android:id="@+id/pkcs12_to_decrypt_description"
9        style="@style/style_description"
10        android:layout_width="fill_parent"
11        android:layout_height="wrap_content"
12        android:text="@string/encrypt_description" />
13   
14    <LinearLayout
15        android:layout_width="match_parent"
16        android:layout_height="wrap_content"
17        android:paddingLeft="5dp"
18        android:orientation="horizontal"
19        style="@style/style_path_file_browser">
20    <TextView
21        android:id="@+id/pathstring"
22        android:layout_width="wrap_content"
23        android:layout_height="wrap_content" 
24        style="@style/style_font_section" 
25        />
26       <TextView
27        android:id="@+id/path"
28        android:layout_width="wrap_content"
29        android:layout_height="wrap_content" 
30        style="@style/style_font_section"
31        />
32   
33    </LinearLayout>
34
35    <LinearLayout
36        android:layout_width="match_parent"
37        android:layout_height="0dp"
38        android:layout_weight="0.40" >
39
40        <ListView
41            android:id="@+id/file_list"
42            android:layout_width="match_parent"
43            android:layout_height="match_parent"
44            android:choiceMode="singleChoice"
45                        style="@style/style_listviews"
46                                  />         
47
48 
49           
50    </LinearLayout>
51 
52   <LinearLayout 
53       
54        android:layout_width="match_parent"
55        android:layout_height="3dp"
56        android:background="#777777"></LinearLayout>
57 
58    <include
59        android:id="@+id/button_bar"
60        android:layout_width="match_parent"
61        android:layout_height="wrap_content"
62        layout="@layout/actionbar_main" />
63
64</LinearLayout>
Note: See TracBrowser for help on using the repository browser.