我正在Android中开发一个移动应用程序,用于列出最新消息。我已经实现了导航抽屉来选择类别。为此,我使用了片段和帧布局。当我打开导航抽屉时,背景中的布局似乎消失或者屏幕亮度变暗。
有没有办法让我可以在不淡化框架布局的情况下打开导航抽屉。(在xml文件中或以编程方式)
我无法发布图片(因为我的声誉号码很低),但如果下面有帮助我的xml文件。
<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" >
<!-- Framelayout to display Fragments -->
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</FrameLayout>
<!-- Listview to display slider menu -->
<ListView
android:id="@+id/list_slidermenu"
android:layout_width="240dp"
android:layout_height="fill_parent"
android:layout_gravity="start"
android:background="@color/time_al_blue"
android:choiceMode="singleChoice"
android:listSelector="@drawable/list_selector"
android:paddingTop="15dp" />
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:4)
答案 1 :(得分:0)
如果您想这样做,最好使用Jeremy Feinstein
中的滑动菜单在这里你可以找到implementation of his library,如果你喜欢这个解决方案,你可以用它来取代导航抽屉。