gpt4 book ai didi

android - 使用 ConstraintLayout 查看与工具栏的重叠

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:31:40 25 4
gpt4 key购买 nike

我在使用 ConstraintLayout
时遇到了 ListView 与兼容工具栏重叠的问题我想要做的就是有一个工具栏,然后在其余空间有一个 ListView 。很简单

这是我的布局

<android.support.constraint.ConstraintLayout 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.support.v7.widget.Toolbar
android:id="@+id/app_toolbar2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Toolbar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
android:visibility="visible"
app:layout_constraintTop_toTopOf="parent"
/>

<ListView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/app_toolbar2"
/>

</android.support.constraint.ConstraintLayout>

我不确定问题是否是 ListView 的 layout_height 优先于其他所有内容,因此要使 ListView 与父级一样高,确保底部有重叠或截断,因为工具栏占用了一些空间。让 ListView 占据工具栏后剩余的垂直空间的正确方法是什么?

最佳答案

根据 ConstraintLayout 的官方文档:

  • 您需要使用 MATCH_CONSTRAINT (0dp) 而不是 MATCH_PARENT

Important: MATCH_PARENT is not recommended for widgets contained in aConstraintLayout. Similar behavior can be defined by usingMATCH_CONSTRAINT with the corresponding left/right or top/bottomconstraints being set to "parent".

只需更改 Listview 宽度和高度 = "0dp"

<ListView
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/app_toolbar2"/>

关于android - 使用 ConstraintLayout 查看与工具栏的重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49583939/

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