gpt4 book ai didi

android - 在 Appbar 下面设置 Recyclerview

转载 作者:行者123 更新时间:2023-11-29 19:20:21 25 4
gpt4 key购买 nike

我想在我的 activity_main 中设置一个应用栏。出于某种原因,我无法正确设置它。它被设置在回收站 View 下方。

这是我的 activity_main

<?xml version="1.0" encoding="utf-8"?>

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
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:openDrawer="start">


<include
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="wrap_content" />




<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation = "vertical"
android:layout_marginTop="?attr/actionBarSize"
tools:context=".MainActivity">

<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview_heritage_sites"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"/>

</RelativeLayout>


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

这是我的 app_bar_main

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorWhite"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>




</android.support.design.widget.CoordinatorLayout>

感谢您的宝贵时间和帮助!

最佳答案

<?xml version="1.0" encoding="utf-8"?>

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
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:openDrawer="start">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<include
android:id="@+id/appbar"
layout="@layout/app_bar_main"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize"
android:layout_below="@id/appbar"
tools:context=".MainActivity">

<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview_heritage_sites"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"/>

</RelativeLayout>
</RelativeLayout>


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

关于android - 在 Appbar 下面设置 Recyclerview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42669789/

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