GridView on item click listener

前端 未结 2 874
日久生厌
日久生厌 2021-01-16 13:58
        gridView.setOnItemClickListener(new OnItemClickListener() {
        public void onItemClick(AdapterView parent, View v,
                int position         


        
2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-16 14:16

    does the gridView have a custom layout ?

    if yes, go to the custom layout xml file and change these attributes

    android:clickable="false"
    android:focusable="false"
    

提交回复
热议问题