How to highlight ListView-Items

后端 未结 4 1720
伪装坚强ぢ
伪装坚强ぢ 2021-02-07 15:30

i got the following problem.

i have a ListView with custom rows consisting of an imageview and a textview. the textview\'s xml code is



        
4条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-07 16:07

    @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.BLACK);
                }
    
                view.setBackgroundColor(Color.RED);
    
            }
    

提交回复
热议问题