source: dispositivos_moviles/TibisayMovil/res/layout/activity_file_to_share.xml @ 6b383b3

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

*- Agregada actividad FileToShareActivity? para compartir archivos a través de otras aplicaciones. Se pueden compartir archivos firmados, archivos BDOC descargados de servidores y archivos extraídos de BDOC.

  • 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/share_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.