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

    评论

报告相同问题?

悬赏问题

  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿