在滑动抽屉中添加滚动视图
我在我的应用程序中使用了 SlidingDrawer
。现在我想在其中添加滚动视图。我尝试这样做,但它给了我错误,指出滑动抽屉必须具有指定的尺寸。
任何人都可以帮助我吗?
I have used SlidingDrawer
in my application. Now I want to add scroll view in it. I have tried to do so but it gives me error which says sliding drawer must have specified dimensions.
Can any one help me for that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要按照 Yann MASOCH 所说设置layout_width 和layout_height 来消除该错误消息。
还要记住将 id 设置为滚动视图中的 id/content 而不是 LinearLayout,以便滑动抽屉能够与滚动一起使用。这是带有滚动的 SlidingDrawer 的示例:
You need to set layout_width and layout_height as Yann MASOCH says to get rid of that error message.
Also remember to set the id as id/content in the scrollview instead of the linearLayout in order for the slidingdrawer to work with scroll. Here is an example of the SlidingDrawer with scroll:
对于滚动视图,您必须至少输入:
For a scrollview, you must type at the least :