010-Android开发解决控件超出屏幕,不能正常显示的问题
Posted 沐雨2148356341
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了010-Android开发解决控件超出屏幕,不能正常显示的问题相关的知识,希望对你有一定的参考价值。
可使用控件ScrollView来做下翻滚动条,但是ScrollView内部只能包含一个控件(可在其内部添加一个layout布局,在布局内部再添加内容)
<ScrollView android:layout_width="409dp" android:layout_height="wrap_content" android:layout_marginStart="1dp" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent"> <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:src="@mipmap/standard" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> </ScrollView>
以上是关于010-Android开发解决控件超出屏幕,不能正常显示的问题的主要内容,如果未能解决你的问题,请参考以下文章
带有长文本 UILabel 的 UIView 无法显示超出屏幕高度的文本