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

Last change on this file since 67541a6 was 288126d, checked in by Jose Ruiz <joseruiz@…>, 11 years ago

Manejo de repositorio de certificados y firma con pkcs7

  • Property mode set to 100644
File size: 2.3 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2
3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    android:gravity="bottom"
7    android:orientation="vertical"
8    android:id="@+id/generalView" 
9    android:background="#ebebeb">
10
11   
12     <TextView
13        android:id="@+id/cert_description"
14        style="@style/style_description"
15        android:layout_width="fill_parent"
16        android:layout_height="wrap_content"
17        android:text="@string/selectcertificatedescription" />
18   
19    <ListView
20        android:id="@+id/cert_chooser"
21        android:layout_width="match_parent"
22        android:layout_height="0dp"
23        android:layout_weight="0.4"
24        android:choiceMode="multipleChoice"
25        android:textFilterEnabled="true" 
26
27        style="@style/style_listviews">
28        <!-- Preview: listitem=@layout/cert_item -->
29    </ListView>
30
31    <View
32        android:layout_width="match_parent"
33        android:layout_height="1dip"
34        android:background="@android:drawable/divider_horizontal_dark" />
35<!--
36    <LinearLayout
37        android:layout_width="match_parent"
38        android:layout_height="wrap_content">
39
40        <TextView
41            android:id="@+id/cert_chooser_install_message"
42            android:layout_width="wrap_content"
43            android:layout_height="wrap_content"
44            android:layout_gravity="start"
45            android:layout_weight="1000"
46            android:layout_margin="6dp"
47            android:text="@string/install_new_cert_message" />
48
49        <Button
50            android:id="@+id/cert_chooser_install_button"
51            android:layout_width="wrap_content"
52            android:layout_height="wrap_content"
53            android:layout_gravity="center"
54            android:layout_margin="6dp"
55            android:layout_weight="0.01"
56            android:text="@string/install_new_cert_button_label" />
57    </LinearLayout>
58 -->
59   
60   <LinearLayout 
61       
62        android:layout_width="match_parent"
63        android:layout_height="3dp"
64        android:background="#777777"></LinearLayout>
65    <include
66        android:id="@+id/button_bar"
67        android:layout_width="match_parent"
68        android:layout_height="wrap_content"
69        layout="@layout/cancel_delete_accept_buttons" />
70
71</LinearLayout>
Note: See TracBrowser for help on using the repository browser.