1

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

我在 android 上查看了SlidingDrawer以尝试开始,但它看起来正在贬值。如何在 android 上创建类似的未来证明效果?

4

1 回答 1

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" />
于 2014-01-17T06:13:36.323 回答