2012-02-28 42 views
0

在我的應用我有在第一個活動複選框,我想無論是選中或取消選中在第二活動指其狀態信息。有沒有辦法做到這一點PLZ詳細解釋例子。 謝謝。我想引用複選框在另一活動中的Android

+1

是否使用意圖從當前的活動到下一個活動移動看看 – 2012-02-28 13:00:23

回答

1

使用包。例如,

將其已選中或未選中的狀態傳遞給另一個活動時進行捆綁和傳遞。

Intnet i = new Intent(class.this, classb.class) 
Bundle b = new Bundle(); 

if(button.ischecked()){ 
b.putInt("Checked", 1); 
}else{ 
b.putInt("Checked", 0); 
} 
startActivity(i); 

在antoher活動,得到了束

int checked = b.getInt("Checked"); 

if(checked = 1){ Log.i("TAG", "It is checked")} 
// perform action here...... 
0

這是不可能在傳統的Java風格類似:

otherActivity.isSomeCheckboxCecked(); 

您必須執行活動之間的一些溝通。最簡單的一種是使用

startActivityForResult() 

here

相關問題