实施带有值和文本的列表?
我是安卓新手。我对清单有些疑问。我需要从 xml 文件动态创建一个列表。 xml 包含类似于
的格式(如 html 中的 )。 我如何用列表(或任何其他选项)来表示这一点。位置应该看起来像一个列表,我想选择这个位置)。 当数据保存回服务器时使用此 ID。我尝试使用列表但无法得到
感谢。
i am new to android. I have some doubt with list. I need to create a list dynamically from one the xml file.
The xml contains the format something like <location id ="some_id" label="label">
(like <option>
in html).
How can i represent this with list(or any other option. the locations should look like a list and i want to select this locations).
This id is used when the data is save back in server. I tried with list but cant get
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先有两个部分
,您需要解析您的 xml 文件,或者更改格式以将其作为字符串数组(例如)包含在项目的资源中。
第二,您需要设置包含与您的价值观相对应的项目的警报。请参阅http://malsandroid.blogspot.com/ 2010/04/list-picker-and-fading-popup-notice.html
there are 2 parts to this
first, you need to either parse your xml file, or change the format to include it in the resources of the project as a string array (for instance) in your values.xml file
second, you need to set an alert with items corresponding to your values. see http://malsandroid.blogspot.com/2010/04/list-picker-and-fading-popup-notice.html