Android TextView實現跑馬燈效果的方法_Android

來源:互聯網
上載者:User

本文為大家分享一個非常簡單但又很常用的控制項,跑馬燈狀態的TextView。當要顯示的文本長度太長,又不想換行時用它來顯示文本,一來可以完全的顯示出文本,二來效果也挺酷,實現起來超級簡單,所以,何樂不為。先看下效果圖:

代碼實現

TextView內建了跑馬燈功能,只要把它的ellipsize屬性設定為marquee就可以了。但有個前提,就是TextView要處於被選中狀態才能有效果,看到這,我們就很自然的自訂一個控制項,寫出以下代碼:

public class MarqueeTextView extends TextView { public MarqueeTextView(Context con) {  super(con); } public MarqueeTextView(Context context, AttributeSet attrs) {  super(context, attrs); } public MarqueeTextView(Context context, AttributeSet attrs, int defStyle) {  super(context, attrs, defStyle); } @Override public boolean isFocused() {  // TODO Auto-generated method stub  if(getEditableText().equals(TruncateAt.MARQUEE)){   return true;  }  return super.isFocused(); }}

重寫了isFocused方法,並進行判斷,只有設定了marqueen屬性的才保持選中狀態,否則它就跟普通TextView一樣。接下來就可以直接使用了,看下布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <FrameLayout  android:id="@+id/titlebar_layout"  android:layout_width="match_parent"  android:layout_height="wrap_content"  android:background="#39ac69" >  <LinearLayout   android:layout_width="match_parent"   android:layout_height="50dp"   android:background="#ffffff"   android:gravity="center_vertical"   android:orientation="horizontal" >   <ImageView    android:id="@+id/home_location_iv"    android:layout_width="25dp"    android:layout_height="27dp"    android:layout_marginLeft="10dp"    android:scaleType="fitXY"    android:src="@drawable/icon_place" />   <com.lxj.marqueetextview.MarqueeTextView    android:id="@+id/home_location_tv"    android:layout_width="0dp"    android:layout_height="wrap_content"    android:layout_marginLeft="10dp"    android:layout_marginRight="10dp"    android:layout_weight="1"    android:ellipsize="marquee"    android:focusable="true"    android:focusableInTouchMode="true"    android:gravity="center"    android:marqueeRepeatLimit="marquee_forever"    android:scrollHorizontally="true"    android:singleLine="true"    android:text="正在定位..."    android:textColor="#39ac69"    android:textSize="18sp" />   <ImageView    android:id="@+id/home_search_iv"    android:layout_width="25dp"    android:layout_height="27dp"    android:layout_marginRight="10dp"    android:scaleType="fitXY"    android:src="@drawable/icon_place" />  </LinearLayout></FrameLayout></LinearLayout>

要注意兩點ellipsize屬性要設定為”marquee”,行數屬性即singleLine要設定為true。到此TextView的跑馬燈效果就實現了。

希望本文對大家學習Android軟體編程有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.