source: dispositivos_moviles/TibisayMovil/res/layout/certificate_buttons.xml @ ca6582b

Last change on this file since ca6582b 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.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="wrap_content"
5    style="@style/style_actionbar"
6    android:baselineAligned="false"
7    android:gravity="bottom" >
8
9    <!--  <Button
10        android:id="@+id/button_cancel"
11        android:layout_width="match_parent"
12        android:layout_height="wrap_content"
13        android:layout_margin="6dp"
14        android:layout_weight="1"
15        android:text="@android:string/cancel" />-->
16
17
18      <TextView
19            android:id="@+id/cert_chooser_install_button"
20            android:layout_width="match_parent"
21            android:layout_height="match_parent"
22            android:layout_gravity="center"
23            android:paddingTop="5dp"
24            android:gravity="center"
25            android:layout_weight="1"
26            android:text="@string/install_new_cert_button_label"
27       android:drawableTop="@drawable/ic_management_blanco"
28        android:background="@drawable/background_lower_menu" 
29            android:textColor="@color/actionbar_text"
30/>
31     
32
33      <TextView
34        android:id="@+id/button_delete"
35        android:layout_width="match_parent"
36        android:layout_height="match_parent"
37        android:layout_weight="1"
38            android:gravity="center"
39                        android:paddingTop="5dp"
40           
41        android:text="@string/delete"
42        android:drawableTop="@drawable/ic_limpiar_blanco"
43        android:background="@drawable/background_lower_menu" 
44            android:textColor="@color/actionbar_text"
45/>
46     
47            <TextView
48        android:id="@+id/button_open"
49        android:layout_width="match_parent"
50        android:layout_height="match_parent"
51        android:layout_weight="1"
52        android:paddingTop="5dp"
53        android:gravity="center"
54        android:text="@string/open_keychain"
55        android:drawableTop="@drawable/ic_management_blanco"
56        android:background="@drawable/background_lower_menu" 
57            android:textColor="@color/actionbar_text"
58/>
59     
60     <TextView
61        android:id="@+id/change_password"
62        android:layout_width="match_parent"
63        android:layout_height="match_parent"
64        android:layout_weight="1"
65        android:paddingTop="5dp"
66        android:gravity="center"
67        android:text="@string/change_password"
68        android:drawableTop="@drawable/ic_password_blanco"
69        android:background="@drawable/background_lower_menu" 
70            android:textColor="@color/actionbar_text"
71/> 
72               
73   
74     <!--  <Button
75        android:id="@+id/button_accept"
76        android:layout_width="match_parent"
77        android:layout_height="wrap_content"
78        android:layout_margin="6dp"
79        android:layout_weight="1"
80        android:enabled="false"
81        android:text="@android:string/ok" />-->
82   
83
84</LinearLayout>
Note: See TracBrowser for help on using the repository browser.