如果只有一个TextView,只要把textview的属性更改就好了

android:singleLine="true"

android:ellipsize="marquee"

android:focusable="true"

android:focusableInTouchMode="true"

但是如果有几个甚至好多textview,那么后面的的就不能获取焦点,要实现,我们需定义一个类MarqueeText:注意要继承TextView类

import android.content.Context;

import android.util.AttributeSet;

import android.widget.TextView;

/**

* Created by 97617 on 2016/11/26.

*/

public class MarqueeText extends TextView {

public MarqueeText(Context context) {

super(context);

}

@Override//实现了都获取焦点

public boolean isFocused() {

return true;

}

public MarqueeText(Context context, AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

}

public MarqueeText(Context context, AttributeSet attrs) {

super(context, attrs);

}

}

然后text使用聚焦Textview的时候,代码如下:

如果有所帮助,脸皮厚求个赞~

此文章仅代表自己(本菜鸟)学习积累记录,或者学习笔记,如有侵权,请联系作者删除。人无完人,文章也一样,文笔稚嫩,在下不才,勿喷,如果有错误之处,还望指出,感激不尽~

技术之路不在一时,山高水长,纵使缓慢,驰而不息。

公众号:秦怀杂货店

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐