答案 0 :(得分:1)
它只是一个DrawerLayout,具有半透明背景和一些奇特的造型!
你可以创建一个这样的:
<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">
<!-- The main content view -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- The drawer -->
<FrameLayout android:id="@+id/drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="end"/>
</android.support.v4.widget.DrawerLayout>