嗨,我试图在通知管理器字幕中制作我的部分文本,但没有用,我试过这个:
<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设置字幕这是一个很长的文本,不适合屏幕,因此需要进行字幕
但是选框不起作用只是保持静止我能做什么?
谢谢你。