2013-03-18 47 views
0

我需要幫助將自定義對話框中的值傳遞給活動。 我不明白我應該用什麼。我已經使用了意圖,但對話框不支持意圖值傳遞。 所以任何人都可以在這裏幫助我,我完全被困住了。如果你有任何基本的例子,那麼這將是非常好的。 謝謝。我們如何將任何值(選定一個)從對話框傳遞給Android中的活動?

+0

您是否嘗試過使用一個變量來存儲值和值傳遞給方法,在對話框的d時間解僱,該對話框你可以使用意圖內.. – Abx 2013-03-18 11:25:46

+1

請你可以把你的錯誤代碼放在這裏? – 2013-03-18 11:26:39

回答

0

片段從谷歌文檔:

// Alert Dialog code (mostly copied from the Android docs 
AlertDialog.Builder builder = new AlertDialog.Builder(this); 
builder.setTitle("Pick a color"); 
builder.setItems(items, new DialogInterface.OnClickListener() { 
    public void onClick(DialogInterface dialog, int item) { 
     myFunction(item); 
    } 
}); 
AlertDialog alert = builder.create(); 

// Now elsewhere in your Activity class, you would have this function 
private void myFunction(int result){ 
    // Now the data has been "returned" (as pointed out, that's not 
    // the right terminology) 
} 
相關問題