|
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:background="@color/backgroundmain"
|
|
7
|
android:gravity="center_horizontal"
|
|
8
9
10
|
android:orientation="vertical" >
<TextView
|
|
11
|
android:id="@+id/textViewTitle"
|
|
12
13
|
android:layout_width="wrap_content"
android:layout_height="wrap_content"
|
|
14
|
android:layout_marginLeft="14dp"
|
|
15
|
android:background="@color/backgroundmain"
|
|
16
|
android:text="@string/title"
|
|
17
18
|
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@color/Whyte_POwaH" />
|
|
19
|
|
|
20
21
|
<ListView
android:id="@+id/listView1"
|
|
22
23
|
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
24
|
android:background="@color/Gray"
|
|
25
|
android:cacheColorHint="@color/Black"
|
|
26
27
|
android:clickable="true"
android:visibility="visible" >
|
|
28
|
|
|
29
|
</ListView>
|
|
30
|
|
|
31
|
</LinearLayout>
|