我是靠谱客的博主 香蕉背包,最近开发中收集的这篇文章主要介绍解决ConstraintLayout 与ScrollView 嵌套时ScrollView 内容没有完全显示,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

参考:
https://stackoverflow.com/questions/40637442/bottom-of-scrollview-clipped-when-using-constraintlayout

ConstraintLayout 布局中有ScrollView 时,ScrollView 的宽高要设置为0dp 才可以正确的约束布局

 <ScrollView

android:layout_width="0dp"
android:layout_height="0dp"
android:fillViewport="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/layout_item_binding_card_indicator">
</ScrollView>

最后

以上就是香蕉背包为你收集整理的解决ConstraintLayout 与ScrollView 嵌套时ScrollView 内容没有完全显示的全部内容,希望文章能够帮你解决解决ConstraintLayout 与ScrollView 嵌套时ScrollView 内容没有完全显示所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(85)

评论列表共有 0 条评论

立即
投稿
返回
顶部