Change the background image of listview on Focus

后端 未结 3 1305
隐瞒了意图╮
隐瞒了意图╮ 2021-01-16 13:03

\"enter

My code is :

ListContacts.java

publi         


        
3条回答
  •  情书的邮戳
    2021-01-16 13:33

    in getView

    if(position == focusedPosition) {
        textView.setColor(context.getResources().getColor(R.color.color_for_focused_item);
    } else {
        textView.setColor(context.getResources().getColor(R.color.color_for_normal_item);
    }
    

提交回复
热议问题