gpt4 book ai didi

android - 如何在 xml Android studio 中使用 DrawerLayout

转载 作者:行者123 更新时间:2023-11-30 01:43:19 25 4
gpt4 key购买 nike

嗨,我知道这个问题太愚蠢了,但这对应用程序来说确实很重要。使用 xml 是一件大事。我面临很多问题。

它不允许我拖放东西,当我这样做时,它会放置在其他位置。

我可以在相对布局中进行管理,但是 DrawerLayout 我无法做我想做的事。这是我的XML

<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">


<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"/>

<!-- -->
<fragment
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"

android:id="@+id/fragment"
android:name="corp.msf.com.facebookconnect.MainFragment"
tools:layout="@layout/fragment_main"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

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

我希望 fragment 出现在上方和下方的工具栏中。但是 fragment 占据了所有位置(在工具栏上重叠)。我如何指定以及如何轻松使用 xml。欢迎任何帮助。谢谢阅读。

最佳答案

用于您的工具栏和 fragment 。

如下设置线性布局的方向为垂直

<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"/>

<fragment
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/fragment"
android:name="corp.msf.com.facebookconnect.MainFragment"
tools:layout="@layout/fragment_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</LinearLayout>


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

关于android - 如何在 xml Android studio 中使用 DrawerLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34125762/

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