gpt4 book ai didi

Android DrawerLayout 不显示主要内容

转载 作者:行者123 更新时间:2023-11-30 01:28:39 27 4
gpt4 key购买 nike

我对 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>

我尝试了所有可能的组合。即使我删除 fragment 主要内容仍然不显示。

有人能发现问题吗?

最佳答案

上周,我遇到了这个问题,原因是你设置的宽度和高度放。以下是我的代码。希望能给你一些建议。

`

  <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,它不起作用。但我找到你有它。我猜你的问题不是绘图布局。

关于Android DrawerLayout 不显示主要内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36064404/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com