source: dispositivos_moviles/TibisayMovil/res/layout/cancel_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: 1.6 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    android:baselineAligned="false"
6    style="@style/style_actionbar"
7    android:weightSum="1" >
8
9    <LinearLayout
10        android:id="@+id/button_cancel_zone"
11        android:layout_width="match_parent"
12        android:layout_height="match_parent"
13        android:layout_weight="0.5"
14        android:background="@drawable/background_lower_menu"
15        android:gravity="center"
16        android:orientation="vertical"
17         >
18
19        <ImageView
20            android:id="@+id/button_cancel"
21            android:layout_width="wrap_content"
22            android:layout_height="wrap_content"
23            android:padding="8dp"
24            android:src="@drawable/flecha_anterior"
25            android:gravity="center"/>
26
27     
28    </LinearLayout>
29
30    <LinearLayout
31        android:id="@+id/button_accept_zone"
32        android:layout_width="match_parent"
33        android:layout_height="match_parent"
34        android:layout_weight="0.5"
35        android:background="@drawable/background_lower_menu"
36        android:gravity="center"
37        android:orientation="vertical"
38         >
39
40        <ImageView
41            android:id="@+id/button_accept"
42            android:layout_width="wrap_content"
43            android:layout_height="wrap_content"
44            android:padding="8dp"
45            android:src="@drawable/flecha_siguiente"
46            android:gravity="center"
47              />
48
49    </LinearLayout>
50    </LinearLayout>
Note: See TracBrowser for help on using the repository browser.