在我的应用程序中,我正在使用支持库中的导航抽屉。默认情况下它是半透明的,设置它或它的孩子的背景颜色只是添加这个颜色的半透明版本。这是抽屉和它的两个孩子:
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ListView android:id="@+id/left_drawer_p"
android:layout_width="500dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp"
android:background="@color/grey"/>
</android.support.v4.widget.DrawerLayout>