android 我想在首选项屏幕中显示对话框

发布于 2024-12-23 07:58:09 字数 140 浏览 1 评论 0原文

我想从首选项屏幕显示密码更改提示对话框。当单击首选项“更改密码”时,它应该显示一个对话框提示密码和确认密码。我应该能够验证密码是否相同。

例子是 设置->位置和位置安全 -> 设置密码

我希望我的应用程序具有类似的功能。

I want to show a password change prompt dialog from preferences screen. When a preference "Change Password" is clicked it should show a dialog prompting password and confirm password. I should be able to verify if the password are same.

Example is
Settings->Location & Security->Set Password

I want to have similar functionality for my app.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明天过后 2024-12-30 07:58:09

您应该根据您想要的组件排列创建第一个布局(设置 - >位置和安全 - >设置密码屏幕)。并将此布局添加到

AlertDialog.Builder builder= new AlertDialog.Builder(context);
//Create Layout as per "set password" screen
builder.setView(layout); // Here set your layout 

希望这有帮助。

You should create first layout what the component arrangement you wanted as per (Settings->Location & Security->Set Password screen). And add this layout to

AlertDialog.Builder builder= new AlertDialog.Builder(context);
//Create Layout as per "set password" screen
builder.setView(layout); // Here set your layout 

Hope this helpful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文