gpt4 book ai didi

java - ListView 与折叠工具栏重叠

转载 作者:行者123 更新时间:2023-12-02 10:26:40 25 4
gpt4 key购买 nike

我曾经使用 Android Studio 中的项目模板设置折叠工具栏,并尝试在 NestedScrollView 中实现 ListView(请参阅下面的代码)

我有最新的 Android Studio 版本,并且 AVD 在 Android 9 上运行

我已经尝试过

  1. 更改 NestedScrollView 的 android:fillViewport="true"
  2. 实现我自己的 ListView ( Collapsing Toolbar with ListView )
  3. 将 ListView 包装到 LinearLayout 中

我找到了几个使用RecyclerView的解决方案,我不想使用这种方法 - 如果这是最后一种方法,我会;)。 (这是一个学校项目,我们应该只使用我们在学校学到的组件face palm)

我将在下面跳过一些 XML 导入行:

<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"
android:fitsSystemWindows="true"
tools:context=".MainScreen">

<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="@dimen/app_bar_height"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:toolbarId="@+id/toolbar">

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

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

<fragment
android:id="@+id/fragment1"
android:name="net.mountdev.alcohollevel.EntryList"
android:layout_width="match_parent"
android:layout_height="match_parent" />


<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/fab_margin"
app:layout_anchor="@id/app_bar"
app:layout_anchorGravity="bottom|end"
app:srcCompat="@drawable/ic_add_white_24dp" />

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

嵌套 ListView

<android.support.v4.widget.NestedScrollView 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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".MainScreen"
tools:showIn="@layout/activity_main_screen">

<ListView android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:drawSelectorOnTop="false"/>

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

当前的结果是,ListView 位于 ActionBar 中,而本不应该在中(参见屏幕截图)

ActionBar overlaps with List

最佳答案

问题出在 fragment 上。它占据了整个空间。尝试类似的东西

<RelativeLayout
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.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="50dp"
android:fitsSystemWindows="true">

<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:toolbarId="@+id/toolbar">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
/>

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

<fragment
android:layout_below="@+id/app_bar"
android:id="@+id/fragment1"
android:layout_width="match_parent"
android:layout_height="match_parent"/>


<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_anchor="@id/app_bar"
android:layout_alignParentEnd="true"
android:layout_marginTop="25dp"
android:layout_marginEnd="16dp"
app:layout_anchorGravity="bottom|end"/>

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

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