我有这个列表视图
每个listview项目都有一个具有背景的textview,我想更改listview项目的textview背景,以便集中注意力。
答案 0 :(得分:1)
您应该使用Selector 修改强> 使用selector drawable作为ListView元素的背景,或为ListView指定android:listSelector
答案 1 :(得分:0)
您在onfocusChangeListener中更改了背景颜色。尝试使用以下代码
livView.setOnFocusChangeListener(new OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
TextView tv=(TextView)v.findViewById(R.id.yourId);
if(hasFocus){
tv.setBackgroundColor(bg_color);
}
}
});