如何在Android设备屏幕上制作两个可滑动的部分?
如何创建具有两个独立部分且每个部分可滑动的自定义视图?示例是 iPad Zillow -> http://www.zillow.com/ipad/
我想知道这是否也可以做到在主屏幕上,而不仅仅是在新应用程序中......
How to create custom view with two independent sections, each slideable? Example would be iPad Zillow -> http://www.zillow.com/ipad/
I was wondering if this can also be done on the home screen and not only in new app...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑这会是 Android 中的“自定义视图”。主要的 Zillow 风格活动是一个
MapView
、一个ListView
和一个ImageView
(用于照片),使用LinearLayouts< /code> 或用于组织的
RelativeLayout
。如果您编写自己的主屏幕,当然可以。
I doubt that would be a "custom view" in Android. The main Zillow-style activity would be a
MapView
, aListView
, and anImageView
(for the photo), usingLinearLayouts
or aRelativeLayout
for organization.If you write your own home screen, sure.