Android 版 Mono - ExapandableListView
Android 版 Mono 支持 ExpandableListView 吗? 如果是这样,是否有一个示例,其中所选项目可用作 CLR 类型?
澄清:
我已经考虑过实现这一点,但由于 Java.Lang.Object 是方法签名的返回类型,我们在扩展 BaseExpandableListAdapter 时遇到了问题。
Does Mono for Android support ExpandableListView?
If so, is there an example of this where the selected item is available as a CLR type?
Clarification:
I have looked into implementing this, yet we have faced issues in extending the BaseExpandableListAdapter due to the Java.Lang.Object being the return type of the method signatures.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该视图公开为 Android.Widget.ExpandableListView
您可以使用 SelectedId 和 SelectedPosition 属性 (IExpandableListAdapter) 来获取所选的底层项目。
The view is exposed as Android.Widget.ExpandableListView
You can use the SelectedId and SelectedPosition properties on the list's adapter (IExpandableListAdapter) to get at the underlying item that is selected.