0
是否可以使用意向從其他活動回憶主要活動?我試圖運行下面的代碼(主要活動是ImageSelection):使用意圖呼叫主要活動
public void onClick(View v) {
Intent intent = new Intent(this,ImageSelection.class);
switch(v.getId()) {
case R.id.button1:
startActivity(intent);
}
}
發生了什麼事? – 2011-03-08 19:52:02