您好,登錄后才能下訂單哦!
怎么在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是一種基于Linux內核的自由及開放源代碼的操作系統,主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯盟領導及開發。
關于怎么在Android中利用TextView實現跑馬燈效果問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。