-1

嗨,我在 java 文件中使用 setlistadapter 创建了 listview。通过不使用 xml 布局我创建了 listview,但我想为 listview 设置背景颜色。如何设置它?

4

1 回答 1

0

请阅读http://developer.android.com/reference/android/view/View.html

ListView listView = getListView();

//set background to color
listView.setBackgroundColor(#FF888888);

//set background to Drawable
listView.setBackgroundDrawable(myDrawable);

//set background to Resource
listView.setBackgroundResouce(R.id.my_res_id);
于 2012-07-13T05:20:30.517 回答