source: dispositivos_moviles/TibisayMovil/res/layout/cancel_delete_accept_buttons.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.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    style="@style/style_actionbar"
4    android:layout_width="match_parent"
5    android:layout_height="wrap_content"
6    android:baselineAligned="false"
7    android:gravity="bottom" >
8
9    <ImageView
10        android:id="@+id/button_cancel"
11        android:layout_width="match_parent"
12        android:layout_height="match_parent"
13        android:layout_weight="1"
14        android:background="@drawable/background_lower_menu"
15        android:src="@drawable/flecha_anterior"
16        android:padding="8dp"
17        android:gravity="center" />
18
19    <TextView
20        android:id="@+id/cert_chooser_install_button"
21        android:layout_width="match_parent"
22        android:layout_height="match_parent"
23        android:layout_gravity="center"
24        android:layout_weight="1"
25        android:background="@drawable/background_lower_menu"
26        android:drawableTop="@drawable/anadir_certificados"
27        android:paddingTop="6dp"
28        android:gravity="center"
29        android:text="@string/install_new_cert_button_label"
30        android:textColor="@color/actionbar_text" 
31        android:visibility="gone"/>
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:background="@drawable/background_lower_menu"
39        android:drawableTop="@drawable/eliminar_certificados"
40        android:gravity="center"
41          android:paddingTop="6dp"
42        android:text="@string/delete"
43        android:textColor="@color/actionbar_text"
44        android:visibility="gone" />
45
46    <ImageView
47        android:id="@+id/button_accept"
48        android:layout_width="match_parent"
49        android:layout_height="match_parent"
50        android:layout_weight="1"
51          android:padding="8dp"
52        android:background="@drawable/background_lower_menu"
53         android:src="@drawable/flecha_siguiente"
54        android:enabled="false"
55        android:gravity="center" />
56
57</LinearLayout>
Note: See TracBrowser for help on using the repository browser.