Project

General

Profile

Download (770 Bytes) Statistics
| Branch: | Revision:

examples / src / main / res / layout / table_of_contents.xml @ af662543

1
<?xml version="1.0" encoding="utf-8"?>
2
 <LinearLayout 
3
 	xmlns:android="http://schemas.android.com/apk/res/android"
4
    android:orientation="vertical"
5
    android:layout_width="match_parent"
6
    android:layout_height="match_parent">
7
        
8
    <TextView
9
        android:layout_width="wrap_content"
10
        android:layout_height="wrap_content"
11
        android:layout_gravity="center_horizontal"
12
        android:autoLink="web"
13
        android:paddingBottom="5dp"
14
        android:paddingLeft="5dp"
15
        android:paddingRight="5dp"
16
        android:paddingTop="5dp"
17
        android:text="@string/tocHeader" />
18

    
19
     <ListView 
20
     	android:id="@android:id/list"
21
        android:layout_width="match_parent"
22
        android:layout_height="match_parent"/>
23
 </LinearLayout>
(28-28/30)