Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How yo set listview background like this. I want to appear when the number of record 0

enter image description here

share|improve this question

5 Answers

up vote 8 down vote accepted

There is special method in ListView - setEmptyView(). You can find examples of using it here or here.

share|improve this answer

Just set a background image at the parent layout and then set the color of the ListView to fully transparent:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    style="@style/Main" android:background="@drawable/background">
    <ListView android:cacheColorHint="#00000000" .../>
</LinearLayout>
share|improve this answer

Read the documentation of the ListActiviy. You can define a view which will automatically shown when the list is empty and has not items. The view for the empty list got to have the id android:id/empty.

So no need to play around with the background.

share|improve this answer

You can set a drawable as background with ListView.setBackgroundDrawable()

share|improve this answer

You need to check before passing array/arraylist into adapter ,if the length of array/arraylist is 0 then add this image to your main layout.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.