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

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

Se agregan al control de versiones clases y archivos de layout para la gestión del repositorio de certificados

  • Property mode set to 100644
File size: 1.1 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:background="#f2f2f2"
6    android:orientation="vertical" >
7       
8    <TextView
9        android:id="@+id/sign_description"
10        style="@style/style_description"
11        android:layout_width="fill_parent"
12        android:layout_height="wrap_content"
13        android:text="@string/installdescription" />
14   
15    <TextView
16        android:id="@+id/path"
17        style="@style/style_font_section"
18        android:layout_width="match_parent"
19        android:layout_height="wrap_content"
20        android:background="#d7d2cb" />
21
22    <ListView
23        android:id="@+id/file_list"
24        style="@style/style_listviews"
25        android:layout_width="match_parent"
26        android:layout_height="wrap_content"
27        android:choiceMode="multipleChoice" >
28
29        <!--
30        android:drawSelectorOnTop="false"
31        android:textFilterEnabled="true"
32        android:cacheColorHint="@android:color/transparent">
33        -->
34    </ListView>
35
36</LinearLayout>
Note: See TracBrowser for help on using the repository browser.