如何保存onClickListener的状态?

发布于 2024-11-17 14:20:24 字数 89 浏览 2 评论 0原文

我有一个实现多个 onClickListener 的程序。因此,随着用户点击按钮的进展。是否有办法保存用户在离开应用程序或被销毁之前使用的 onClick 侦听器?

I have a program that implements several onClickListeners. So as the user progresses through the button clicks. Is there anyway to save which onClick listener the user was on before they left the application or is was destroyed?

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

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

发布评论

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

评论(2

混浊又暗下来 2024-11-24 14:20:24

使用共享首选项来实现这一点。每当您单击任何按钮时,都会存储按钮名称及其值。

示例

SharedPreferences pref = getSharedPreferences(PREFS_NAME,MODE_PRIVATE);   

        passwordInString = password.getText().toString();
        userNameInString = username.getText().toString();

        getSharedPreferences(PREFS_NAME, MODE_PRIVATE)
        .edit()
        .putString(PREFS_USERNAME, passwordInString)
        .putString(PREFS_PASSWORD, userNameInString)
        .commit();

和 oncreate() 中始终使用以下代码获取按钮的状态
示例示例

String usernameName = pref.getString(PREFS_USERNAME, "");
    String upassWord = pref.getString(PREFS_PASSWORD, "");

取决于您可以设置按钮状态的值

Use sharedpreference to achieve this. store the button name and its value whenever you click on any button.

example

SharedPreferences pref = getSharedPreferences(PREFS_NAME,MODE_PRIVATE);   

        passwordInString = password.getText().toString();
        userNameInString = username.getText().toString();

        getSharedPreferences(PREFS_NAME, MODE_PRIVATE)
        .edit()
        .putString(PREFS_USERNAME, passwordInString)
        .putString(PREFS_PASSWORD, userNameInString)
        .commit();

and in oncreate() always get the state of button using the following code
Sample example

String usernameName = pref.getString(PREFS_USERNAME, "");
    String upassWord = pref.getString(PREFS_PASSWORD, "");

depending on the value you can set the state of button

°如果伤别离去 2024-11-24 14:20:24

您可以使用 SharedPreferences 来实现此目的。

You could use SharedPreferences for that purpose.

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