Android中跑马灯 maxLines与singleLine

    android:id="@+id/tv_marquee"
    android:text="学习交流,如有疑问可以发送电邮至[email protected]"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="5dp"
   //现在新版本的sdk已经将singleline视作过时的应用
    android:singleLine="true"
    android:textColor="#b43838"
    android:ellipsize="marquee"
    android:focusable="true"
    android:marqueeRepeatLimit="marquee_forever"
    android:focusableInTouchMode="true"
    android:scrollHorizontally="true"
    />




你可能感兴趣的:(Android)