Android半透明滑动抽屉

时间:2013-08-29 17:16:43

标签: android drawer

我想制作一个类似iOS 7的抽屉,我可以从底部滑动,不覆盖整个屏幕,在Android上半透明/模糊。

我在android上看了SlidingDrawer试图获得一个开始,但看起来它正在被折旧。如何在android上创建类似的未来证明效果?

1 个答案:

答案 0 :(得分:2)

只需更改在导航抽屉片段中填充的列表视图的背景颜色。

使用背景颜色“#22FFFFFF”使导航抽屉半透明

使用十六进制颜色代码,其中包含两个数字用于alpha,六个用于颜色本身,如下所示:

使用android:background =“#88676767”将第88个更改为您选择的不透明度

android:background =“#c0000000” - 更黑暗

如果它有用,请评价。

<ListView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="#22FFFFFF"
tools:context="com.Navigation Drawer Fragment" />