我的DrawerLayout有问题。我设法做了一个抽屉,这不是问题。但主要内容并未显示。
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Holy Operating Systems!"
android:textSize="24sp" />
</FrameLayout>
<fragment
android:id="@+id/left_drawer"
class="com.app.fragments.CustomFragment"
android:layout_width="320dp"
android:layout_height="match_parent"
android:layout_gravity="start" /> </android.support.v4.widget.DrawerLayout>
我尝试了所有可能的组合。即使我删除片段主要内容仍然没有显示。
有人能发现问题吗?
答案 0 :(得分:1)
上周,我遇到了这个问题,原因是你的宽度和高度 组。以下是我的代码。我希望能给你一些建议。
`
<android.support.v4.widget.DrawerLayout
android:id="@+id/dlNav"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!--mian content-->
<FrameLayout
android:id="@+id/flContent"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/im_MainImage"
android:src="@mipmap/a"
/>
</FrameLayout>
<!--DrawLayout the content-->
<android.support.v7.widget.RecyclerView
android:id="@+id/dlContent"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#ffffcc"
android:choiceMode="singleChoice"
android:divider="@android:color/transparent"
android:dividerHeight="0dp" />
</android.support.v4.widget.DrawerLayout>`
在第一个,我没有设置layout_gravity,它不起作用。但我找到你了 有它。我想你的问题不是画画布局。
答案 1 :(得分:0)
多么愚蠢的傻事,或者至少是我。
问题是我在AppTheme下的styles.xml中有这个:
<item name="android:layout_gravity">center</item>
并且它不想在没有显示任何错误的情况下那样工作。 以防有人做同样的事情。