|
1
2
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
android:id="@+id/LinearLayout1"
|
|
4
5
|
android:layout_width="match_parent"
android:layout_height="match_parent"
|
|
6
|
android:layout_gravity="center"
|
|
7
|
android:background="@color/backgroundmain"
|
|
8
|
android:gravity="center_horizontal"
|
|
9
10
11
|
android:orientation="vertical" >
<TextView
|
|
12
|
android:id="@+id/textViewTitle"
|
|
13
14
|
android:layout_width="fill_parent"
android:layout_height="50dp"
|
|
15
|
android:background="@color/backgroundmain"
|
|
16
|
android:gravity="center"
|
|
17
|
android:text="@string/title"
|
|
18
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
19
20
|
android:textColor="@color/Whyte_POwaH"
android:textStyle="bold" />
|
|
21
|
|
|
22
23
|
<ListView
android:id="@+id/listView1"
|
|
24
25
|
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
26
|
android:background="@color/Gray"
|
|
27
|
android:cacheColorHint="@color/Black"
|
|
28
29
|
android:clickable="true"
android:visibility="visible" >
|
|
30
|
|
|
31
|
</ListView>
|
|
32
|
|
|
33
|
</LinearLayout>
|