如何使用首选项屏幕中的数据输入? (安卓蜂窝)

发布于 2024-11-26 09:52:22 字数 113 浏览 0 评论 0原文

在我的应用程序中,我使用了 API 演示中给出的两窗格首选项屏幕。现在,在编辑文本首选项中,我可以选择登录 Picasa。用户输入用户名和密码后,如何将该数据链接到我的活动?如何获取该数据并将其写入首选项文件中?

In my app, I have used the two-pane preference screen as given in the API Demo. Now, in edit text preference, I have an option to login into Picasa. After the user inputs his username and password, how do I link that data to my activity? How can I get that data and write it in the preference file?

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

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

发布评论

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

评论(1

梦冥 2024-12-03 09:52:22
    final EditText userNameTextBox = (EditText) findViewById(R.id.loginfield_username);
    final EditText passwordTextBox = (EditText) findViewById(R.id.loginfield_password);
    String userName = usernameTextBox.getText().toString();
    String password = passwordTextBox.getText().toString();
    final EditText userNameTextBox = (EditText) findViewById(R.id.loginfield_username);
    final EditText passwordTextBox = (EditText) findViewById(R.id.loginfield_password);
    String userName = usernameTextBox.getText().toString();
    String password = passwordTextBox.getText().toString();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文