zoukankan      html  css  js  c++  java
  • android TextView实现跑马灯效果(字体滚动)

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.myapplication.MainActivity">
    <!--
    android:singleLine="true"    //文字一行显示
    android:ellipsize="marquee"  //跑马灯属性
    android:focusable="true"    //TextView是否可以获取焦点
    android:focusableInTouchMode="true"  //文字滑动的时候是否可以获取焦点
    -->
    <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="zxcvbnmasdfghjklqwertsssssssssssssssssssssssyuiop"
    android:textSize="24sp"
    android:singleLine="true"
    android:ellipsize="marquee"
    android:focusable="true"
    android:focusableInTouchMode="true"/>
    </LinearLayout>
  • 相关阅读:
    第十八周作业
    第十七周作业
    第十六周作业
    第十五周作业
    第十四周作业
    第十三周作业
    第十二周作业
    第二阶段考试
    第十周作业
    启航,带着梦想出发!
  • 原文地址:https://www.cnblogs.com/fengzikuange/p/6100865.html
Copyright © 2011-2022 走看看