Android Can';添加导航抽屉后是否无法滚动我的网络视图?

Android Can';添加导航抽屉后是否无法滚动我的网络视图?,android,webview,navigation-drawer,Android,Webview,Navigation Drawer,添加导航抽屉后,我无法滚动我的网络视图 你能给我一个解决方案吗?我被困在这里了! 代码如下: <WebView android:id="@+id/webview" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_alignParentBottom="true" android:layout_alignParentLeft="

添加导航抽屉后,我无法滚动我的网络视图 你能给我一个解决方案吗?我被困在这里了! 代码如下:

<WebView
    android:id="@+id/webview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true" />

<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
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <ListView
        android:id="@+id/left_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="left"
        android:background="#111"
        android:choiceMode="singleChoice"
        android:divider="@android:color/transparent"
        android:dividerHeight="0dp" />

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


谢谢你的帮助

将您的webview添加到框架内部布局仍然错误,是否有其他解决方案?然后使用片段。在包含web视图的框架布局中调用片段。