弹出窗口上的编辑文本
2022-09-03 03:15:46
我正在使用Java在Android 2.2上开发。我在PopupWindow上放了一个editText,它不起作用。它的作用类似于禁用的编辑文本,单击编辑文本不会显示软键盘。如何在弹出窗口窗口中添加编辑文本?
我正在使用Java在Android 2.2上开发。我在PopupWindow上放了一个editText,它不起作用。它的作用类似于禁用的编辑文本,单击编辑文本不会显示软键盘。如何在弹出窗口窗口中添加编辑文本?
只需尝试:
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle("Title");
alert.setMessage("Message");
// Set an EditText view to get user input
final EditText input = new EditText(this);
alert.setView(input);
alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// Do something with value!
}
});
alert.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
// Canceled.
}
});
alert.show();
我已经解决了这样的问题:我放了,现在它正在工作。弹出窗口上的编辑文本似乎没有焦点,因为弹出窗口没有焦点。popupWindow.setFocusable(true);