Android PreferenceList,选择后的子列表
我正在寻找一种方法,在用户在列表首选项中选择一个选项后,在首选项中显示第二个列表
例如:用户从列表中选择选项“发送短信至”,然后出现第二个列表,并且用户可以选择联系人。
目前,我正在尝试从我的首选项活动中放置一个 onSharedPreferenceChanged 方法,并在选择后显示一个包含联系人的警报对话框,但我认为还有另一种方法...但我还没有在互联网上找到它。 ..
有谁知道这怎么可能?
谢谢
I'm looking for a way to show a second list in a preference, after a user has selected a choice in a listpreference
For example : the user selects the option "Send sms to" from a list, then a second list appears, and the user can choose a contact.
At the moment, i'm trying to put a onSharedPreferenceChanged method from my preference activity, and show an alert Dialog containing the contacts after a selection, but i think there is another way... But i havent found it yet on the Internet...
Does anyone know how it is possible ?
Thank's
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的
PreferenceActivity
中放置一个如下所示的方法,用于侦听何时单击该特定键。In your
PreferenceActivity
put a method like below that listens for when that specific key is clicked.