我想用EditText
顯示Dialog
。我設想它有兩個按鈕:一個肯定的按鈕,它將持續EditText
中包含的文本,以及一個反向按鈕,它將取消並返回到Activity
,該按鈕就像沒有任何事情發生一樣。從對話框中獲取價值
AlertDialog.Builder builder = new Builder(context);
final EditText text = new EditText(context);
builder.setTitle("New Profile").setMessage("Name this new profile").setView(text);
builder.setPositiveButton("Create", new OnClickListener() {
public void onClick(DialogInterface di, int i) {
final String name = text.getText().toString();
//do something with it
}
});
builder.setNegativeButton("Cancel", new OnClickListener() {
public void onClick(DialogInterface di, int i) {
}
});
builder.create().show();
我做得不對的setView()
方法:我已經使用AlertDialog
沒有成功試過嗎?會使用自定義Dialog
更實用嗎?
編輯:
我已經得到了幾個答案說的代碼爲他們工作...不知道爲什麼它不是爲我工作。這裏是logcat:
E/AndroidRuntime( 326): FATAL EXCEPTION: main
E/AndroidRuntime( 326): android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
E/AndroidRuntime( 326): at android.view.ViewRoot.setView(ViewRoot.java:531)
E/AndroidRuntime( 326): at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:177)
E/AndroidRuntime( 326): at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91)
E/AndroidRuntime( 326): at android.app.Dialog.show(Dialog.java:241)
E/AndroidRuntime( 326): at com.gobernador.TopPage.onListItemClick(TopPage.java:77)
E/AndroidRuntime( 326): at android.app.ListActivity$2.onItemClick(ListActivity.java:319)
E/AndroidRuntime( 326): at android.widget.AdapterView.performItemClick(AdapterView.java:284)
E/AndroidRuntime( 326): at android.widget.ListView.performItemClick(ListView.java:3513)
E/AndroidRuntime( 326): at android.widget.AbsListView$PerformClick.run(AbsListView.java:1812)
E/AndroidRuntime( 326): at android.os.Handler.handleCallback(Handler.java:587)
E/AndroidRuntime( 326): at android.os.Handler.dispatchMessage(Handler.java:92)
E/AndroidRuntime( 326): at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime( 326): at android.app.ActivityThread.main(ActivityThread.java:3683)
E/AndroidRuntime( 326): at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime( 326): at java.lang.reflect.Method.invoke(Method.java:507)
E/AndroidRuntime( 326): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
E/AndroidRuntime( 326): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
E/AndroidRuntime( 326): at dalvik.system.NativeStart.main(Native Method)
這個失敗在哪裏?它是否不正確地從EditText文本中獲取文本?或者對話框不顯示? – Davek804 2012-04-04 04:16:01
你的代碼工作我剛剛檢查,你面臨什麼問題 – 2012-04-04 05:08:51