How to set a drawable as background for a listview in a class?
if (array1.size() < 8)
{
lv1.setBackgroundDrawable(R.drawable.bgimghs2b);
}
is improper.
Thanks.
|
|
That's because you're not giving it a
If you're in an activity. If not, then you need to get a |
|||||||||
|
|
use this: android.view.View.setBackgroundResource(int resID)
|
|||
|
|
|
you should use :
|
|||
|
|