textview 无需焦点无限跑马灯效果

前言:这是我第一次写博客也不知道说些什么,主要是记录下开发过程中遇到的问题。也是搜索了广大大神们的解决办法,自己归纳后分享希望能帮助到像我一样 的新手。关于android方面我自己也是刚入门的新手,如有幸有大神看到我的博客希望多多指点。在此谢过!!

  言归正传:textview 无需焦点无限跑马灯效果主要是解决小部分的碎片化问题。

1.
首先,写一个类,让其继承自TextView:
public class MarqueeText extends TextView {
public MarqueeText(Context con) {
  super(con);
}

public MarqueeText(Context context, AttributeSet attrs) {
  super(context, attrs);
}
public MarqueeText(Context context, AttributeSet attrs, int defStyle) {
  super(context, attrs, defStyle);
}
@Override
public boolean isFocused() {
return true;
}
@Override
protected void onFocusChanged(boolean focused, int direction,
   Rect previouslyFocusedRect) {  
}
}
2.
<!-- 在布局文件中用自己写的控件只需要写类的全名就行,如下com.example.    这是包名,后面再跟类名就行了 -->
  <com.example.MarqueeText
    android:id="@+id/AMTV1" 
    android:layout_width="400dip"
    android:layout_height="wrap_content"        
    android:layout_marginLeft="80dip"    
    android:textSize="25sp"        
    android:textColor="@android:color/black" 
    android:lines="1"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:scrollHorizontally="true"  
    android:singleLine="true" 
    android:marqueeRepeatLimit="marquee_forever"  
    android:ellipsize="marquee" 
    android:background="#2FFFFFFF"
    android:text="这才是真正的文字跑马灯效果,文字移动速度,文字移动方向,文字移动的样式,动画等等……"
    />
注意: 4.0以上系统版本中,需要对view添加android:singleLine="true"属性




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值