当前位置: 代码迷 >> Android >> android跑马灯成效
  详细解决方案

android跑马灯成效

热度:86   发布时间:2016-04-28 06:17:13.0
android跑马灯效果

代码如下:

    <TextView        android:id="@+id/indexgallerytv"        android:layout_width="fill_parent"        android:layout_height="wrap_content"        android:ellipsize="marquee"        android:focusable="true"        android:focusableInTouchMode="true"        android:gravity="left|center"        android:marqueeRepeatLimit="marquee_forever"        android:paddingLeft="20dip"        android:paddingRight="20dip"        android:scrollHorizontally="true"        android:singleLine="true"        android:text="问:什么比七个工作日更让人不爽?答:第八个(debug)。我有个比Windows7好14倍的操作系统,我叫它Windows 98"        android:textColor="#ffffff"        android:textSize="20dip" />


  相关解决方案