在openDrawer和closeDrawer时动态更改DrawerLayout中Fragment的位置

时间:2015-03-10 16:10:44

标签: position fragment drawerlayout

我花了很多时间来解决我的问题,但我无法找到办法。 我的问题就像链接中的图片:http://goo.gl/dffOhJ (对不起,我没有足够的声望发布图片)

我的main_layout.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="end"
    android:background="#F78B1E"
    android:minHeight="?attr/actionBarSize" />

<android.support.v4.widget.DrawerLayout
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center_vertical">
    <!-- The main content view -->
    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    <!-- The navigation drawer -->

    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="210dp"
        android:layout_marginLeft="5dp"
        android:layout_marginTop="5dp"
        android:layout_height="wrap_content"/>

</android.support.v4.widget.DrawerLayout>

我的问题是,当抽屉打开或关闭时,如何动态更改片段的位置? 谁能帮我。 提前感谢:)

1 个答案:

答案 0 :(得分:0)

实施DrawerListener并在其回调中:onDrawerSlide(View drawerView, float slideOffset)更改content_frame的位置(水平翻译)。