博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Android 开发】TextView的跑马灯效果
阅读量:5328 次
发布时间:2019-06-14

本文共 705 字,大约阅读时间需要 2 分钟。

listview里的TextView跑马灯
 
步骤1,TextView里:
    android:ellipsize="marquee"
    android:focusableInTouchMode="true"
    android:singleLine="true"
注:TextView一定不能设置focusable="true"
 
步骤2,ListView里:
     android:focusable="true"
 
步骤3,绑定的Adapter
    TextView tv = helper.getView(R.id.tv_intro);
    
tv.setSelected(true);
 
 
纯TextView的跑马灯
 

 <TextView android:layout_width="100px"

        android:layout_height="wrap_content"
        android:textColor="@android:color/white" 

        android:singleLine="true"
        android:ellipsize="marquee" 
        android:focusable="true" 
        android:marqueeRepeatLimit="marquee_forever" 
        android:focusableInTouchMode="true" 
        android:scrollHorizontally="true"
        android:text="这才是真正的文字跑马灯效果"
        >
    </TextView>

 

转载于:https://www.cnblogs.com/leafseelight/p/6410043.html

你可能感兴趣的文章
hdu3535 AreYouBusy
查看>>
SDL2源码分析1:初始化(SDL_Init())
查看>>
SignalR Troubleshooting
查看>>
Windows Phone 7 异步编程模型
查看>>
oracle10g连接自动断开,报ORA-03135错误
查看>>
angular : direative :comunication 指令之间的通讯
查看>>
Linux _ Day8 Shell编程之字符截取命令
查看>>
jquery鼠标右键事件
查看>>
检测目标程序ELF bit是32还是64
查看>>
怎样建立一个bower私库
查看>>
struts2基本介绍
查看>>
Duanxx的STM32学习:NVIC操作
查看>>
假设拦截WebView的错误和OS升级到4.4后链接不能点击的问题
查看>>
c++中sort()及qsort()的使用方法总结
查看>>
Javascript > Eclipse > 自动代码规范化
查看>>
站立会议6
查看>>
我的笔记
查看>>
学生成绩
查看>>
16. 3Sum Closest
查看>>
使用Objective-C的+(void)initialize初始化static变量
查看>>