我有带有正面和负面按钮的 AlertDialog。在 AlertDialog 布局中,我有 EditText 和两个按钮(btnAdd1、btnAdd2)。我希望当用户单击按钮 btnAdd1 或 btnAdd2 时将相同的文本添加到 AlertDialog 中的 EditText(但不关闭 AlertDialog)。这可能在 AlertDialog 中执行,还是我必须只使用 Dialog?
这是 AlertDialog 的布局(R.layout.prompt):
<LinearLayout>
<EditText
android:id="@+id/userInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text" >
<requestFocus />
</EditText>
<Button
android:id="@+id/btnAdd1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="bla" />
<Button
android:id="@+id/btnAdd2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="bla" />
</LinearLayout>
这是源代码:
LayoutInflater layoutInflater = LayoutInflater.from(this);
View promptView = layoutInflater.inflate(R.layout.prompt, null);
AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(this);
alertDialogBuilder.setView(promptView);
alertDialogBuilder
.setCancelable(false)
.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
//...
}
})
.setNegativeButton("Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog alertD = alertDialogBuilder.create();
alertD.show();
我想从布局中访问 btnAdd1 和 btnAdd2 。将 OnClickListener() 设置为这两个按钮。