source: dispositivos_moviles/TibisayMovil/res/layout/confirmationlist.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.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="match_parent"
5    android:background="#ebebeb" >
6   
7   
8     <TextView
9        android:id="@+id/confirmation_decription"
10        style="@style/style_description"
11        android:layout_width="fill_parent"
12        android:layout_height="wrap_content"
13        android:text="@string/confirmationdescription"
14        android:layout_alignParentTop="true" />
15   
16    <ListView
17        android:id="@+id/confirmation_list"
18        android:layout_width="match_parent"
19                android:layout_height="match_parent"
20                android:choiceMode="multipleChoice"
21                android:layout_below="@+id/confirmation_decription"
22                android:layout_above="@+id/confirmation_separator"
23                 style="@style/style_listviews"
24               
25        ></ListView>
26
27   <LinearLayout 
28        android:id="@+id/confirmation_separator"
29        android:layout_width="match_parent"
30        android:layout_height="3dp"
31        android:background="#777777"
32        android:layout_above="@+id/confirmation_bar"
33        android:orientation="horizontal"
34        ></LinearLayout>
35    <include
36        android:id="@+id/confirmation_bar"
37        android:layout_width="match_parent"
38        android:layout_height="wrap_content"
39        layout="@layout/actionbar_confirmation"
40        android:layout_alignParentBottom="true" />
41   
42</RelativeLayout>
Note: See TracBrowser for help on using the repository browser.