gpt4 book ai didi

带有滚动条和 maxHeight 的 Android TextView

转载 作者:IT老高 更新时间:2023-10-28 23:02:33 26 4
gpt4 key购买 nike

我需要设置 TextView 的最大高度(使用 maxHeight 或 maxLines)。如果有更多的文本行,则应显示滚动条。我应该为此使用什么标记?

最初的想法是用ScrollView包裹TextView,但是ScrollView没有maxHeight属性。

最佳答案

布局:

<TextView
android:id="@+id/text_view"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="false"
android:maxLines="3"
android:scrollbars="vertical"
android:textColor="@android:color/secondary_text_dark_nodisable"
>
</TextView>

代码:

TextView textView = (TextView)findViewById(R.id.text_view);
textView.setMovementMethod(ScrollingMovementMethod.getInstance());

注意:

android:textColor="@android:color/secondary_text_dark_nodisable"用于避免textView被触摸时文本淡出。

关于带有滚动条和 maxHeight 的 Android TextView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2478615/

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