中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

怎么在Android中利用TextView實現跑馬燈效果

發布時間:2021-05-21 15:50:32 來源:億速云 閱讀:157 作者:Leah 欄目:開發技術

怎么在Android中利用TextView實現跑馬燈效果?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

MainActivity

package com.example.junior;
 
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import android.view.View;
import android.widget.TextView;
 
public class MarqueeActivity extends AppCompatActivity implements View.OnClickListener {
    private TextView tv_marquee; // 聲明一個文本視圖對象
    private boolean isPaused = false; // 跑馬燈文字是否暫停滾動
 
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_marquee);
        // 從布局文件中獲取名叫tv_marquee的文本視圖
        tv_marquee = findViewById(R.id.tv_marquee);
        // 給tv_marquee設置點擊監聽器
        tv_marquee.setOnClickListener(this);
    }
 
    @Override
    public void onClick(View v) {
        if (v.getId() == R.id.tv_marquee) { // 點擊了文本視圖tv_marquee
            isPaused = !isPaused;
            if (isPaused) {
                tv_marquee.setFocusable(false); // 不允許獲得焦點
                tv_marquee.setFocusableInTouchMode(false); // 不允許在觸摸時獲得焦點
            } else {
                tv_marquee.setFocusable(true); // 允許獲得焦點
                tv_marquee.setFocusableInTouchMode(true); // 允許在觸摸時獲得焦點
                tv_marquee.requestFocus(); // 強制獲得焦點,讓跑馬燈滾起來
            }
        }
    }
}

 layout

<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:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:gravity="center"
        android:text="跑馬燈效果,點擊暫停,再點擊恢復" />
 
    <!-- 這個是跑馬燈滾動的文本視圖,ellipsize屬性設置為true表示文字從右向左滾動 -->
    <TextView
        android:id="@+id/tv_marquee"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:textColor="#000000"
        android:textSize="17sp"
        android:text="快訊:紅色預警,超強臺風“莫蘭蒂”即將登陸,請居民關緊門窗、備足糧草,做好防汛救災準備!" />
</LinearLayout>

Android是什么

Android是一種基于Linux內核的自由及開放源代碼的操作系統,主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯盟領導及開發。

關于怎么在Android中利用TextView實現跑馬燈效果問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

开封县| 宁远县| 环江| 包头市| 长葛市| 凤城市| 本溪市| 石门县| 昌邑市| 团风县| 顺平县| 镇康县| 天门市| 沂南县| 鸡泽县| 天台县| 德兴市| 江安县| 抚顺市| 金门县| 叙永县| 稻城县| 三都| 五原县| 冷水江市| 永新县| 新安县| 五河县| 休宁县| 凌海市| 平遥县| 工布江达县| 苗栗市| 通州区| 星座| 白银市| 平凉市| 恩平市| 东至县| 天气| 全州县|