AndroidStudio_安卓原生开发_显示不开的时候设置TextView文字横向滚动---Android原生开发工作笔记142

这篇博客介绍了在Android原生开发中,如何设置TextView实现文字横向滚动。如果TextView内容在XML中,只需添加属性;若内容通过setText设置,则需动态设置滚动。另外,文中也提到了自定义控件实现滚动的另一种方法,并提供了技术交流群和作者的联系方式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 设置横向滚动首先要在layout的xml文件中先给TextView加入:


<TextView
...
    android:ellipsize="marquee"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:marqueeRepeatLimit="marquee_forever"
    android:singleLine="true"
    android:focusable="true"
    android:scrollHorizontally="true"
...
/>

然后,注意,如果textview的内容直接写到了xml中,直接上面这样设置就可以了,但是如果

textview的内容,是通过.setText设置的,还需要动态的去设置,横向滚动.

TextView layout_common_yys_textview_customerName = findViewById(R.id.layout_common_yys_textview_customerName);
layout_common_yys_textview_customerName.setText(data.customerName);
layout_common_yys_textview_customerName.setEllipsize(TextUtils.TruncateAt.MARQUEE);
layout_common_yys_
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

添柴程序猿

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值