在Listview中item不多的时候我一般这样:
listAcButtonList.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { // TODO Auto-generated method stub if(position == 0){ Intent intent = new Intent(AcButtonList.this, TvButtonList.class); startActivity(intent); // TestAcXML(); // TestAcCombineXML(); /**/ } } });
但是当item有100个时,就很头疼了。希望有大神能指导一下。
已解决。创建一个方法,使用swtch来判定该用哪个position
能发个代码我参考一下吗 我也是卡在这里
求demo