亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

TextView實現跑馬燈效果 就這么簡單!

發布時間:2020-10-20 06:43:07 來源:腳本之家 閱讀:168 作者:飯飯_fan 欄目:移動開發

一、方法

這里我們用兩種方法來實現跑馬燈效果,雖然實質上是一種

實質就是:

1、TextView調出跑馬燈效果

2、TextView獲取焦點 

第一種:

1、TextView調出跑馬燈效果

android:ellipsize="marquee"

2、TextView獲取焦點

android:focusable="true"
android:focusableInTouchMode="true"

說明:

這種方法如果界面上別的控件獲取焦點的時候就會停止這個跑馬燈效果 

第二種:

1、TextView調出跑馬燈效果

android:ellipsize="marquee"

2、TextView獲取焦點

public class MyTextView extends TextView{ 

  public boolean isFocused() {
    return true;
  }

}

我們的TextView用的就是fry.MyTextView

說明:

就算別的程序獲取焦點,這個跑馬燈效果也不會停止。 

二、代碼實例

效果圖

TextView實現跑馬燈效果 就這么簡單!

三、代碼

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"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical" >
 <TextView 
 android:id="@+id/tv_runHorseLamp"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:singleLine="true"
 android:ellipsize="marquee"
 android:focusable="true"
 android:focusableInTouchMode="true"
 android:text="這是一段很長的威武霸氣的滾動的實現跑馬燈效果的一段逼格很高的很有含義和涵養的文字"
 />
 <!--ellipsize是小數點的意思 marquee 這句話是添加滾動效果-->
 <!-- 獲取焦點之后才能滾動 -->

 <fry.MyTextView
 android:id="@+id/tv_runHorseLamp1"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:ellipsize="marquee"
 android:singleLine="true"
 android:text="這是一段很長的威武霸氣的滾動的實現跑馬燈效果的一段逼格很高的很有含義和涵養的文字"
 />


 <EditText
 android:id="@+id/et_1"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 >
 </EditText>
 
</LinearLayout>

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

改则县| 鄯善县| 渑池县| 岐山县| 佳木斯市| 吴川市| 高雄市| 区。| 温泉县| 奇台县| 米易县| 西峡县| 汶上县| 宁波市| 抚顺市| 肃宁县| 乐都县| 商丘市| 黄石市| 柏乡县| 澄江县| 阿鲁科尔沁旗| 赤城县| 鄄城县| 侯马市| 自治县| 濮阳县| 宜宾市| 澄迈县| 鄂托克前旗| 靖远县| 巴马| 合川市| 宁南县| 黔江区| 奉节县| 宁陕县| 南部县| 遂溪县| 明溪县| 平湖市|