一、方法
成都創(chuàng)新互聯(lián)公司致力于互聯(lián)網(wǎng)網(wǎng)站建設(shè)與網(wǎng)站營(yíng)銷,提供網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、網(wǎng)站開發(fā)、seo優(yōu)化、網(wǎng)站排名、互聯(lián)網(wǎng)營(yíng)銷、小程序開發(fā)、公眾號(hào)商城、等建站開發(fā),成都創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)策劃專家,為不同類型的客戶提供良好的互聯(lián)網(wǎng)應(yīng)用定制解決方案,幫助客戶在新的全球化互聯(lián)網(wǎng)環(huán)境中保持優(yōu)勢(shì)。
這里我們用兩種方法來(lái)實(shí)現(xiàn)跑馬燈效果,雖然實(shí)質(zhì)上是一種
實(shí)質(zhì)就是:
1、TextView調(diào)出跑馬燈效果
2、TextView獲取焦點(diǎn)
第一種:
1、TextView調(diào)出跑馬燈效果
android:ellipsize="marquee"
2、TextView獲取焦點(diǎn)
android:focusable="true"
android:focusableInTouchMode="true"
說(shuō)明:
這種方法如果界面上別的控件獲取焦點(diǎn)的時(shí)候就會(huì)停止這個(gè)跑馬燈效果
第二種:
1、TextView調(diào)出跑馬燈效果
android:ellipsize="marquee"
2、TextView獲取焦點(diǎn)
public class MyTextView extends TextView{ public boolean isFocused() { return true; } }
我們的TextView用的就是fry.MyTextView
說(shuō)明:
就算別的程序獲取焦點(diǎn),這個(gè)跑馬燈效果也不會(huì)停止。
二、代碼實(shí)例
效果圖
三、代碼
fry.MyTextView
package com.example.textviewdemo; import android.content.Context; import android.util.AttributeSet; import android.widget.TextView; public class MyTextView extends TextView{ public MyTextView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); // TODO Auto-generated constructor stub } public MyTextView(Context context, AttributeSet attrs) { super(context, attrs); // TODO Auto-generated constructor stub } public MyTextView(Context context) { super(context); // TODO Auto-generated constructor stub } @Override public boolean isFocused() { return true; } }
/textViewDemo1/res/layout/activity04.xml
<?xml version="1.0" encoding="utf-8"?>
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。