当前位置: 首页 > 工具软件 > Gravity View > 使用案例 >

No drawer view found with gravity LEFT

仉刚洁
2023-12-01

<android.support.v4.widget.DrawerLayout
        android:id="@+id/drawer_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/layout_title"
        android:fitsSystemWindows="true"
        >
       	<FrameLayout 
       	    android:id="@+id/fragment_content"
       	    android:layout_width="match_parent"
       	    android:layout_height="match_parent"
       	    />
		<FrameLayout 
			android:id="@+id/fragment_menu"
			android:layout_width="match_parent"
			android:layout_height="match_parent"
			android:layout_gravity="left"<span style="white-space:pre">		</span>//此处如果没有 这句代码,就会出现这样的报错,加上你想让菜单的位置就OK了
		    />
	</android.support.v4.widget.DrawerLayout>


 类似资料:

相关阅读

相关文章

相关问答