4

嗨,我试图在通知管理器字幕中制作我的部分文本,但没有用,我试过这个:

  <TextView
    android:id="@+id/title_text"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:ellipsize="marquee"
    android:fadingEdge="horizontal"
    android:gravity="bottom"
    android:marqueeRepeatLimit="marquee_forever"
    android:scrollHorizontally="true"                                     
    android:focusable="true"
    android:focusableInTouchMode="true"              
    android:singleLine="true"
    android:textSize="15sp"
    android:textStyle="bold" >
  </TextView>

在我的.java中我使用remoteview:

Notification notification = new Notification(icon, tickerText, when);
RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification);

contentView.setTextViewText(R.id.title_text, "This is a very long text which is not fitting in the screen so it needs to be marqueed");

我想为该title_text设置字幕这是一个很长的文本,不适合屏幕,因此需要进行字幕

但是选框不起作用只是保持静止我能做什么?

谢谢你。

4

3 回答 3

11

我改变了我的xml:

  <TextView
    android:id="@+id/title_text"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:ellipsize="marquee"
    android:fadingEdge="horizontal"
    android:gravity="bottom"
    android:marqueeRepeatLimit="marquee_forever"
    android:scrollHorizontally="false"                                     
    android:focusable="true"
    android:focusableInTouchMode="true"              
    android:singleLine="true"
    android:textSize="15sp"
    android:textStyle="bold" 
    android:textColor="#fff">
    <requestFocus/> 
  </TextView>

我添加了<requestFocus/>,现在我的选框工作完美。

于 2012-10-20T21:32:00.657 回答
1

根据文档,将 scrollHorizo​​ntally 属性设置为 true 不会将文本包装在边缘。尝试将其设置为 false,以便使用 ellipsize 属性。

于 2012-10-20T18:25:33.000 回答
0

我花了一天时间才意识到选框效果是通过NotificationCompat.Builder中的这种方法完成的:支持 RemoteView的setTicker

我真的希望这个答案能拯救许多人的生命:)(差点掉头发)

于 2012-11-23T23:52:30.250 回答