选择列表首选项时执行操作
抱歉,我不得不重新表述我的问题,我有一个带有某些选项的列表首选项
我想更改该值取决于所选选项的变量。我不知道如何获取选定的索引或从哪里开始。
Sorry I had to rephrase my question, I have a list preference with some option
I want to change the value of a variable depending on the option selected. I have no idea how to get the selected index or where to start from.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,首先扔掉您发布的代码。 :) 您不想使用线程进行计划更新,您想使用
AlarmManager
。原因是 Android 可能随时终止您正在运行的应用程序。当警报触发时,它将根据需要唤醒您的应用程序,并在必要时从头开始启动它,以便它可以运行。
First, start by throwing out that code you posted. :) You don't want to use a thread for scheduled updates, you want to use the
AlarmManager
.The reason for this is that Android might kill your running app at any time. When an alarm fires it will wake up your app as needed, starting it from scratch if necessary so that it can run.