用于在 Android 中设计动态布局,例如主屏幕中的状态栏
如何在android中制作一个类似于主屏幕中的状态栏的布局,允许用户将状态栏拖动到任意高度。布局还应该允许用户通过向上或向下滑动来完全扩展或收缩布局。
How to make a layout in android like the status bar in the home screen which allows the user to drag the status bar up to any height. The layout should also allow the user with a flick up or down to expand or contract the the layout fully.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是类似
SlidingDrawer
的东西吗?可以这样使用:
/src - SliderActivity.java:
/res/layout - main.xml
您需要在 /res/drawable 文件夹中放置 2 个图像才能制作它工作,如本例中的
arrowup.png
和arrowdown.png
Do you mean something like a
SlidingDrawer
?Can be used like this:
/src - SliderActivity.java:
/res/layout - main.xml
You need 2 images in your /res/drawable folder to make it work, like
arrowup.png
andarrowdown.png
in this example