如何通過ArrayList的索引0值作爲參數傳遞給另一個屏幕幫我請如何獲得ArrayList和PAS的第一個值作爲參數
int counter=Category_name.size();
if(counter==1)
{
static ArrayList<String> Category_name = new ArrayList<String>();
static ArrayList<String> Menu_ID = new ArrayList<String>();
Intent iMenuList = new Intent(MenuGroup.this, thirdstep.class);
String s = Menu_ID[index0];
String t = Category_name[index0];
iMenuList.putExtra("Menu_ID",s);
iMenuList.putExtra("menu_group", t);
startActivity(iMenuList);
}
你想通過完整列表還是隻有第一個值? –
只有在arraylist – user2867267