更改listview项目的textview背景得到集中

时间:2011-09-26 08:37:16

标签: android listview

我有这个列表视图enter image description here

每个listview项目都有一个具有背景的textview,我想更改listview项目的textview背景,以便集中注意力。

2 个答案:

答案 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);
                }
            }
        });