set background of list.xml to #ffffff

This commit is contained in:
2011-12-30 04:11:55 +00:00
parent 648db82252
commit ef43f3a57d
17 changed files with 18 additions and 18 deletions

View File

@@ -1,21 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff" >
>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
<TextView android:id="@android:id/empty"
android:layout_height="wrap_content" />
<TextView
android:id="@android:id/empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:gravity="center_vertical"
android:textColor="#99CC00"
android:text="No Reports"
/>
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#99CC00" />
</LinearLayout>