ImageButton 和 SharedPreferences / 首选项
我想允许用户从我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将信息保存到共享首选项,然后使用 if 语句加载共享首选项。如
如果您有两个以上网站,您可以设置一个开关/案例
编辑
对所有 10 个网站执行此操作
编辑 2
设置默认共享首选项,在早期活动的 onCreate() 中,您可以使用
执行相同操作对于 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 you have more than two websites, you can set up a switch/case
EDIT
Do that for all 10 websites
EDIT 2
to set up a default sharedPreferences, in your onCreate() of an early activity, you can use
Do the same for the URL, and add these two variables
SharedPreferences data;
andpublic static String filename = "fileName";