android studio 怎么修改listview内item的背景色
时间: 2024-05-07 12:22:53 浏览: 172
您可以通过在适配器中重写 `getView()` 方法来修改 `ListView` 内部的每个项的背景颜色。以下是一个示例适配器代码:
```java
public class MyAdapter extends ArrayAdapter<String> {
private Context context;
private int resource;
private List<String> items;
private int selectedPosition = -1;
public MyAdapter(Context context, int resource, List<String> items) {
super(context, resource, items);
this.context = context;
this.resource = resource;
this.items = items;
}
public void setSelectedPosition(int position) {
selectedPosition = position;
notifyDataSetChanged();
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(resource, parent, false);
// 设置选中项的背景颜色
if (position == selectedPosition) {
view.setBackgroundColor(Color.parseColor("#FF4081"));
} else {
view.setBackgroundColor(Color.TRANSPARENT);
}
TextView textView = (TextView) view.findViewById(R.id.text_view);
textView.setText(items.get(position));
return view;
}
}
```
在上面的代码中,我们使用 `setSelectedPosition()` 方法来设置选中的项的位置。`getView()` 方法中,我们检查当前项的位置是否等于选中的位置,如果是,则将其背景颜色设置为红色。否则,将其背景颜色设置为透明。您可以根据自己的需求修改背景颜色。
阅读全文