The xml file is the following:
Using xml Syntax Highlighting
- <?xml version="1.0" encoding="UTF-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <LinearLayout android:orientation="horizontal"
- android:gravity="center_vertical|center_horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
- <TextView android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textStyle="bold"
- android:textSize="27dip"
- android:gravity="center_vertical|center_horizontal"
- android:text="@string/titulo_listado"
- />
- </LinearLayout>
- <LinearLayout android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical"
- android:gravity="center_vertical|center_horizontal"
- android:layout_weight="3"
- >
- <ListView android:id="@+id/android:list"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:gravity="center_vertical|center_horizontal"
- android:layout_weight="3"
- />
- <TextView android:id="@+id/android:empty"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:gravity="center_vertical|center_horizontal"
- android:text="No hay documentos disponibles!"
- android:layout_weight="3"
- />
- </LinearLayout>
- <TableLayout android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:gravity="bottom"
- android:stretchColumns="1">
- <TableRow>
- <Button android:id="@+id/create"
- android:text="@string/button_create"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- />
- <Button android:id="@+id/open"
- android:text="@string/button_open"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- />
- <Button android:id="@+id/edit"
- android:text="@string/button_edit"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- />
- <Button android:id="@+id/delete"
- android:text="@string/button_delete"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- />
- </TableRow>
- <TableRow>
- <Button android:id="@+id/characteristics"
- android:text="@string/button_charact"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- />
- <Button android:id="@+id/firm"
- android:text="@string/button_firm"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- />
- <Button android:id="@+id/send"
- android:text="@string/button_send"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- />
- <Button android:id="@+id/quit"
- android:text="@string/button_quit"
- android:layout_height="wrap_content"
- android:layout_width="wrap_content"
- />
- </TableRow>
- </TableLayout>
- </LinearLayout>
Parsed in 0.010 seconds, using GeSHi 1.0.8.4
I hope someone can help me with this problem. Thanks in advance.
Regards,
Helios


