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