Actually I am able to use empty listview in my application when I am having Single list.But I am encountering with two different list which is using same xml.Now how should I proceed in order to get 2 different images to my different list when they are Empty,

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

If you are using imageview with id android.R.id.empty.

then simply use this

ImageView image=(ImageView)findviewbyid(android.R.id.empty);

and set the desired image.

link|improve this answer
50% accepted......Got second image in my 2nd empty list.But when its inflated with items it is still showing emptyview background without any item. – Shahzad Imam Feb 11 at 10:05
feedback

Yep Akki that was almost correct with a little changes in my XMl.The Final code is here All I had to use the same textview described inside the list xml file.

        TextView tv=(TextView)findViewById(android.R.id.empty);
        tv.setBackgroundResource(R.drawable.anniversary_reminder);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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