How to highlight selected item in ListView?

后端 未结 6 1041
醉梦人生
醉梦人生 2020-12-08 23:36

I know that android doesn\'t highlight anything in TouchMode. But I am doing something similar to the gmail application in which you select stuff from the left side and show

6条回答
  •  萌比男神i
    2020-12-09 00:11

    this is for custom listactivity or ListFragment

    highlight selected item in ListView

    @Override
    public void onItemClick(AdapterView parent, View view, int position, long arg3)
    {
    
        for(int a = 0; a < parent.getChildCount(); a++)
        {
            parent.getChildAt(a).setBackgroundColor(Color.TRANSPARENT);
        }
    
        view.setBackgroundColor(Color.GREEN);
    }
    

提交回复
热议问题