Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> 讓TextView出現跑馬燈效果,textview跑馬燈效果

讓TextView出現跑馬燈效果,textview跑馬燈效果

編輯:關於android開發

讓TextView出現跑馬燈效果,textview跑馬燈效果


只需要在TextView中添加一些屬性即可:

<?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" >

    <!-- 實現的屬性:ellipsize、focusable、focusableInTouchMode、singleLine -->
    
    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="20dp"
        android:textColor="#9C27B0"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:singleLine="true"
        android:gravity="center"
        android:text="www.cnblogs.com/zzw1994  www.cnblogs.com/zzw1994"
        android:textSize="30sp" />

</LinearLayout>

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved