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

Last change on this file since ca6582b was a8bb2bb, checked in by Jose Ruiz <joseruiz@…>, 11 years ago

Añadiendo funcionalidad de firma manuscrita en archivo pdf

  • Property mode set to 100644
File size: 2.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:baselineAligned="false"
4    android:layout_width="match_parent"
5    android:layout_height="wrap_content"   
6    android:weightSum="1"
7    style="@style/style_actionbar">
8
9    <LinearLayout
10        android:layout_width="match_parent"
11        android:layout_height="match_parent"
12        android:layout_weight="0.5"
13        android:background="@drawable/background_lower_menu"
14        android:gravity="center_horizontal"
15        android:id="@+id/button_cancel_zone"
16        android:orientation="vertical" 
17         android:weightSum="1" >
18
19        <ImageView
20            android:id="@+id/button_cancel"
21            android:layout_width="wrap_content"
22            android:layout_height="wrap_content"
23            android:enabled="false"
24            android:gravity="center"
25            android:src="@drawable/ic_retroceder"
26            android:layout_weight="0.8"
27             />
28        <TextView           
29            android:id="@+id/button_cancel_text"
30            android:layout_width="wrap_content"
31            android:layout_height="wrap_content"
32            android:text="@string/retroceder"
33            android:gravity="center"
34            android:textColor="@color/actionbar_text"
35            android:layout_weight="0.2"/>
36    </LinearLayout>
37   
38
39    <LinearLayout
40        android:layout_width="match_parent"
41        android:layout_height="match_parent"
42        android:layout_weight="0.5"
43        android:background="@drawable/background_lower_menu"
44        android:gravity="center_horizontal"
45        android:id="@+id/button_accept_zone"
46        android:orientation="vertical" 
47         android:weightSum="1" >
48
49        <ImageView
50            android:id="@+id/button_accept"
51            android:layout_width="wrap_content"
52            android:layout_height="wrap_content"
53            android:enabled="false"
54            android:gravity="center"
55            android:src="@drawable/ic_continuar"
56            android:layout_weight="0.8"
57             />
58        <TextView           
59            android:id="@+id/button_accept_text"
60            android:layout_width="wrap_content"
61            android:layout_height="wrap_content"
62            android:text="@string/continuar"
63            android:gravity="center"
64            android:textColor="@color/actionbar_text"
65            android:layout_weight="0.2"/>
66    </LinearLayout>
67
68</LinearLayout>
Note: See TracBrowser for help on using the repository browser.