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

Last change on this file since 67541a6 was fd4a5b9, checked in by Antonio Araujo Brett <aaraujo@…>, 11 years ago

*- Implementada funcionalidad de descifrar un archivo. Agregadas actividades para realizar operación de descifrado y mostrar resultados del archivo descifrado.

  • Property mode set to 100644
File size: 2.2 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="fill_parent"
4    android:layout_height="fill_parent"
5    android:orientation="vertical"
6    android:id="@+id/decryption_result_layout">
7   
8    <TextView
9        android:id="@+id/title_signature_errors"
10        android:layout_width="fill_parent"
11        android:layout_height="wrap_content"
12        android:layout_marginLeft="5dp"
13        android:layout_marginRight="5dp"
14        android:layout_marginTop="10dp"
15        android:background="@drawable/bg_path_file_to_sign"
16        android:gravity="center"
17        android:text="@string/label_signature_errors" />
18
19    <LinearLayout
20        android:layout_width="match_parent"
21        android:layout_height="wrap_content" >
22
23        <ListView
24            android:id="@+id/listViewErrors"
25            style="@style/style_listviews"
26            android:layout_width="match_parent"
27            android:layout_height="match_parent"
28            android:choiceMode="singleChoice" />
29
30    </LinearLayout>
31<!--
32    <TextView
33        android:id="@+id/imagen_utlizada_name"
34        android:layout_width="wrap_content"
35        android:layout_height="wrap_content"
36        android:layout_marginTop="5dp"
37        android:layout_marginLeft="5dp"
38        android:layout_marginRight="5dp"
39        android:text="" />
40 -->
41<!--     
42    <TextView
43        android:id="@+id/archivo_firmado_path"
44        android:layout_width="wrap_content"
45        android:layout_height="wrap_content"
46        android:layout_marginTop="5dp"
47        android:layout_marginLeft="5dp"
48        android:layout_marginRight="5dp"
49        android:text="" />
50 -->
51   
52    <LinearLayout
53        android:id="@+id/linearSpacingBottom"
54        android:layout_width="fill_parent"
55        android:layout_height="wrap_content"
56        android:orientation="vertical" />
57     
58   <LinearLayout       
59        android:layout_width="match_parent"
60        android:layout_height="3dp"
61        android:background="#777777"/>
62 
63    <include
64        android:id="@+id/button_bar"
65        android:layout_width="match_parent"
66        android:layout_height="wrap_content"
67        layout="@layout/actionbar_sign_result_handwritten_signature"/>   
68</LinearLayout>
Note: See TracBrowser for help on using the repository browser.