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.
我正在开发用于验证的 android 应用程序,它显示带有警报框的消息。我想根据某些条件动态添加按钮。我喜欢问如何做到这一点?我在谷歌上搜索,但找不到任何合适的解决方案。
任何建议都是有帮助的。谢谢。
您可以使用 DialogFragment 来实现它。创建您自己的对话框视图并在对话框片段的 onCreateView() 中对其进行膨胀。
如果您知道可能显示的按钮:
我得到了答案,我在 CommandWrapper 的帮助下使用了命令设计模式。
以下链接更准确地阐述。关联
谢谢大家的建议。