如何让SlidingDrawer透明
我目前正在尝试在我的应用程序中添加 SlidingDrawer
。 我的活动由 GridView
和 SlidingDrawer
组成,将从下到上。 现在我的问题是我需要使 SlidingDrawer
透明,并移动我的 GridView
在某种程度上达到顶部..这可能吗..我是android新手..帮我解决这个问题...
如果移动GridView
不是一个好主意,那么我想要SlidingDrawer
位于 GridView
上方并将其设置为透明,以便我的 GridView
可见
谢谢...
Im currently trying to add the SlidingDrawer
in my application..
My activity consists GridView
and the SlidingDrawer
will be coming from bottom to top..
Now my problem is i need to make the SlidingDrawer
as transparent and also move my GridView
to top to some extent.. Is this possible to make.. Im new to android.. help me out with this...
If moving the GridView
is not an good idea then i want the SlidingDrawer
to come above the GridView
and make it as a transparent so tat my GridView
is visible
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要使
SlidingDrawer
透明,请将其android:background
属性设置为@null
。请参阅以下示例;更新:
以上代码将使整个抽屉透明。要使唯一的内容部分透明,您可以这样做;
To make the
SlidingDrawer
transparent, set itsandroid:background
attribute to@null
. See the following example;Update:
Above code will make the whole drawer transparent. To make the only the content part, transparent, you can do something like this;