AIIK01 2014-04-01 07:33 采纳率: 0%
浏览 2032

RemoteViews 中包含一个TextView 怎样实现跑马灯效果

RemoteViews 中包含一个TextView 怎样实现跑马灯效果

具体代码如下:
配置文件:

 <TextView
    android:id="@+id/txt_trackinfo"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_toRightOf="@+id/iv_cover"
    android:ellipsize="marquee"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:gravity="center"
    android:paddingLeft="33dip"
    android:paddingRight="33dip"
    android:paddingTop="4dip"
    android:singleLine="true"
    android:textColor="#33B5E5"
    android:textSize="15sp" />

 代码如下:


        RemoteViews views = new RemoteViews(getPackageName(), R.layout.newstatusbar);
    String trackinfo = getTrackName();
    String artist = getArtistName();
    if (artist == null || artist.equals(MediaStore.UNKNOWN_STRING)) {
        artist = getString(R.string.unknown_artist_name);
    }
    /// M: change the text color along theme change @{
    if (MusicFeatureOption.IS_SUPPORT_THEMEMANAGER) {
        Resources res = getResources();
        int textColor = res.getThemeMainColor();
        if (textColor != 0) {
            views.setTextColor(R.id.txt_trackinfo, textColor);
        }
    }
    /// @}
    //views.setBundle(R.id.txt_trackinfo,"requestFocus",null);
    trackinfo += " - " + artist;
    views.setTextViewText(R.id.txt_trackinfo, trackinfo);

求高手指导 指导~~~

  • 写回答

1条回答 默认 最新

  • 君落兮 2015-01-28 11:29
    关注

    android:id="@+id/tv5"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:singleLine="true"
    android:ellipsize="marquee"
    android:marqueeRepeatLimit="marquee_forever"
    android:focusableInTouchMode="true"
    android:focusable="true"
    />

    评论

报告相同问题?

悬赏问题

  • ¥20 腾讯企业邮箱邮件可以恢复么
  • ¥15 有人知道怎么将自己的迁移策略布到edgecloudsim上使用吗?
  • ¥15 错误 LNK2001 无法解析的外部符号
  • ¥50 安装pyaudiokits失败
  • ¥15 计组这些题应该咋做呀
  • ¥60 更换迈创SOL6M4AE卡的时候,驱动要重新装才能使用,怎么解决?
  • ¥15 让node服务器有自动加载文件的功能
  • ¥15 jmeter脚本回放有的是对的有的是错的
  • ¥15 r语言蛋白组学相关问题
  • ¥15 Python时间序列如何拟合疏系数模型