gpt4 book ai didi

java - android上textview上的水平滚动?

转载 作者:IT老高 更新时间:2023-10-28 20:51:12 25 4
gpt4 key购买 nike

我正在做一个计算器。我注意到在默认的 android calc 中,您可以水平滚动 textview。我查阅了文档并发现了属性 android:scrollHorizo​​ntally 但是在将它添加到 textview 之后我仍然无法进行水平滚动,文档上没有关于它的进一步信息让我认为只添加 attr 就足够了。这是计算器的 TextView :

    <TextView android:id="@+id/edit_text"
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight=".8"
android:singleLine="true"
android:scrollHorizontally="true"
android:gravity="center|right"
android:text="0" />

当字符超过 textview 宽度时,字符串会被修剪,并且 ... 出现在它的末尾。我做错了什么?

最佳答案

<HorizontalScrollView android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="40dp"
android:layout_height="wrap_content"
android:scrollHorizontally="true"
android:text="Horizontal scroll view will work now"/>

</HorizontalScrollView>

这是让 textview 水平滚动的方法。

关于java - android上textview上的水平滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14097440/

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