OnItemClick各个参数的作用

参考:http://xlover.iteye.com/blog/1223075

参考:http://topic.csdn.net/u/20090813/15/ac06a35e-f01e-4a8c-94b3-83f3993e4174.html

     
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3)
各项的意义:arg1是当前item的view,通过它可以获得该项中的各个组件。 
              例如arg1.textview.settext("asd"); 
           
          arg2是当前item的ID。这个id根据你在适配器中的写法可以自己定义。 


          arg3是当前的item在listView中的相对位置! 

你可能感兴趣的:(ListView)