ImageButton 和 SharedPreferences / 首选项

发布于 2024-12-27 05:32:24 字数 170 浏览 1 评论 0原文

我想允许用户从我的 Android 应用程序的首选项中选择一个网站。 但是,当用户从首选项列表中选择网站时,imagebutton 的图像及其 loadurl 代码必须更改。即使应用程序关闭,图像和 loadurl 也应保持不变。

现在我有了首选项菜单和值。但是我不知道如何更改图像按钮的图像及其网址。 谢谢。

I want to allow the user to select a website from Preferences in my Android app.
But when user choose a website from preferences list , imagebutton's image and its loadurl code must change.The image and loadurl should then remain the same even if the app closes.

now i ve preferences menu and values.but how can i change imagebutton's image and its url i dont know.
thank you.

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

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

发布评论

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

评论(1

燃情 2025-01-03 05:32:24

只需将信息保存到共享首选项,然后使用 if 语句加载共享首选项。如

if (preferences == websiteOne){
//load shared preferences  for websiteOne here
} else {
// load shared preferences for websiteTwo here
}

如果您有两个以上网站,您可以设置一个开关/案例

编辑

switch (website){
case websiteOne:
// shared preferences for websiteOne
imageView.setImageResource(imageResourceFromSharedPreferences);
url.setText(urlFromSharedPreferences)
break;
case websiteTwo:
// shared preferences for websiteTwo
break;
}

对所有 10 个网站执行此操作

编辑 2

设置默认共享首选项,在早期活动的 onCreate() 中,您可以使用

data = getSharedPreferences(filename, 0);
SharedPreferences.Editor e = data.edit();
        e.putString("website", websiteVariable);
        e.commit();

执行相同操作对于 URL,并添加这两个变量 SharedPreferences data;public static String filename = "fileName";

Just save the info to shared preferences, then use an if statement to load the shared preferences. as in

if (preferences == websiteOne){
//load shared preferences  for websiteOne here
} else {
// load shared preferences for websiteTwo here
}

If you have more than two websites, you can set up a switch/case

EDIT

switch (website){
case websiteOne:
// shared preferences for websiteOne
imageView.setImageResource(imageResourceFromSharedPreferences);
url.setText(urlFromSharedPreferences)
break;
case websiteTwo:
// shared preferences for websiteTwo
break;
}

Do that for all 10 websites

EDIT 2

to set up a default sharedPreferences, in your onCreate() of an early activity, you can use

data = getSharedPreferences(filename, 0);
SharedPreferences.Editor e = data.edit();
        e.putString("website", websiteVariable);
        e.commit();

Do the same for the URL, and add these two variables SharedPreferences data; and public static String filename = "fileName";

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