Android导航抽屉右侧不起作用

时间:2015-09-08 14:46:33

标签: android navigation navigation-drawer illegalargumentexception drawerlayout

我有一个导航抽屉,我试着改变它的开口位置。我希望我的导航抽屉在右侧打开。

这是我的导航抽屉xml代码:

<ge.me.custom.CustomDrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout5"
android:layout_width="200dp"
android:layout_height="match_parent" >
<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
<!-- The navigation drawer -->
<LinearLayout
    android:id="@+id/drawer"
    android:layout_width="200dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="#09b52f"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <RelativeLayout
            android:id="@+id/slidemenumainlayout"
            android:layout_width="match_parent"
            android:layout_height="120dp"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true" >

            <ImageView
                android:id="@+id/slidemenuuserimage"
                android:layout_width="70dp"
                android:layout_height="70dp"
                android:layout_alignParentBottom="true"
                android:layout_alignParentLeft="true"
                android:layout_marginBottom="16dp"
                android:layout_marginLeft="14dp"
                android:background="@drawable/ic_user_blue" />

        </RelativeLayout>

        <ListView
            android:id="@+id/drawer_list"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignRight="@+id/slidemenumainlayout"
            android:layout_below="@+id/slidemenumainlayout"
            android:divider="#00af25"
            android:dividerHeight="1dp" >
        </ListView>
    </RelativeLayout>
</LinearLayout>

这是我的自定义抽屉:

public class CustomDrawerLayout extends DrawerLayout {

    public CustomDrawerLayout(Context context) {
        super(context);
    }

    public CustomDrawerLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public CustomDrawerLayout(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        widthMeasureSpec = MeasureSpec.makeMeasureSpec(
            MeasureSpec.getSize(widthMeasureSpec), MeasureSpec.EXACTLY);
        heightMeasureSpec = MeasureSpec.makeMeasureSpec(
            MeasureSpec.getSize(heightMeasureSpec), MeasureSpec.EXACTLY);
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    }

}

此代码位于主要活动内:

  mDrawerToggle = new ActionBarDrawerToggle(getActivity(), mDrawerLayout,
            R.drawable.ic_drawer, R.string.app_name,
            R.string.app_name) {

        @Override
        public boolean onOptionsItemSelected(MenuItem item) {
            if (item != null && item.getItemId() == android.R.id.home) {
                if (mDrawerLayout.isDrawerOpen(Gravity.RIGHT)) {
                    mDrawerLayout.closeDrawer(Gravity.RIGHT);
                } else {
                    mDrawerLayout.openDrawer(Gravity.RIGHT);
                }
            }
            return false;
        }
    };

    mDrawerLayout.setDrawerListener(mDrawerToggle);

我写了一个方法在右侧打开我的抽屉,但是当我运行我的应用程序时,它会崩溃。

public void openDrawer(int gravity) {
    mDrawerLayout.openDrawer(gravity);
}
openDrawer(Gravity.RIGHT);

如果我这样称呼方法:

openDrawer(Gravity.START);

我没有收到错误,但导航抽屉的起始位置仍然存在。

这是我的错误:

java.lang.IllegalArgumentException: No drawer view found with gravity RIGHT

如何打开右侧的导航抽屉?

1 个答案:

答案 0 :(得分:0)

您应该在菜单项目点击中坚持使用更简单的代码。我不认为您需要担心抽屉是否关闭,因为当抽屉打开时,您无法触及图标来点按抽屉。

简单的解决方案是这样的:

@Override 
public boolean onOptionsItemSelected(MenuItem item) {
    if (item.getItemId() == android.R.id.home) {
        mDrawerLayout.openDrawer(Gravity.RIGHT);
    } 
    return false;
});