Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果在自定义布局中按下按钮,是否可以更新 AlertDialog 内容?
显示带有自定义布局的 AlertDialog!自定义布局有六个按钮。
每次在自定义布局中按下六个按钮之一时,我都想更新标题。
布局是这样的:
标题行
带有 6 个按钮的自定义布局
3 个警报对话框按钮
是的,保留对 AlertDialog 和 Button 的 OnClickListener 的引用应该如下所示:
public void onClick(View v) { mDialog.setTitle("New Title"); }