gpt4 book ai didi

java - 工具栏重叠内容

转载 作者:搜寻专家 更新时间:2023-11-01 09:35:39 24 4
gpt4 key购买 nike

需要帮助弄清楚为什么我的工具栏与内容重叠。
我这里有一个工具栏布局

工具栏.xml

<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
android:theme="@style/AppTheme">
</android.support.v7.widget.Toolbar>

然后我将此工具栏与抽屉导航一起使用。

抽屉导航.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="me.jlurena.yougothw.activities.base.NavigationDrawer">

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

<include layout="@layout/toolbar"/>
</LinearLayout>

<ListView
android:id="@+id/nav_list"
android:layout_width="200dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#ffeeeeee">
</ListView>
</android.support.v4.widget.DrawerLayout>


最后,我只需要扩展 NavigationDrawer.java 我在 NavigationDrawer.java 中设置工具栏并在我需要的所有其他 Activity 中扩展它。然后我像这样给它充气

public void inflateBaseLayout(Activity activity, int resLayoutId) {
LayoutInflater inflater =
(LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
// Inflate Navigation Drawer in activity
View view = inflater.inflate(resLayoutId, null, true);
drawer.addView(view, 0); // Where drawer is the DrawerLayout from navigation_drawer.xml
}

我到底在使用工具栏做错了什么?

最佳答案

ListView 放入工具栏包含之后的 LinearLayout 中。这应该会让一切井井有条。

关于java - 工具栏重叠内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43458215/

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