如何在android中创建可扩展布局?
任何人都可以帮助我创建一个可扩展的视图,如 android 市场中的更多按钮吗? 当我们点击“更多”按钮时,它将扩展视图,其中包含有关 Android 市场中应用程序的更多详细信息。
任何帮助将不胜感激。
谢谢
sathish
Can any one help me to create an expandable view like more button in android market?
when we click on more button it will expand the view with more details about the application in android market place..
Any help will be greatly appreciated..
thanks
sathish
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我一直在做类似的事情。
目前,在 more/less 栏模式下,它看起来像这样:
它仍在进行中,但可以在此处查看项目和源代码
I have been working on something similar.
At the moment it looks like this in the more/less bar mode:
It is still a work in progress but the project and source can be viewed here
也许实现这一点的最佳方法是使用 ArrayAdapter。当您单击“更多”按钮时,获取更多数据并使用 addAll() 方法将所有新获取的数据添加到适配器。 addAll() 会自动将更改传播到 ListView,因此无需显式通知它。
Maybe the best way to implement this is to use ArrayAdapter. When you click on More button fetch more data and use addAll() method to add all newly fetched data to the adapter. addAll() automatically will propagate changes to the ListView so don't bother to notify it explicit.