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

溫馨提示×

溫馨提示×

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

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

怎么在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

和龙市| 河北区| 通海县| 丰宁| 秦安县| 辽阳县| 东辽县| 崇文区| 连南| 永胜县| 台山市| 伊春市| 镶黄旗| 新民市| 扶绥县| 门源| 克拉玛依市| 九龙城区| 宜阳县| 岐山县| 辽宁省| 旌德县| 崇左市| 台湾省| 正镶白旗| 双桥区| 沙田区| 土默特右旗| 太湖县| 安阳县| 灌阳县| 高要市| 苍溪县| 蕲春县| 武汉市| 开封县| 赣州市| 怀安县| 苗栗县| 乐昌市| 霍林郭勒市|