TextViewカスタムNotificationレイアウトをティッカーのように見せる方法はありますか? 次のコードを使用してNotificationレイアウトを設定しています。
mNotificaionView = new RemoteViews(getPackageName(), R.layout.status_bar);
mNotificaionView.setTextViewText(R.id.ticker, getLongText());
mNotification.contentView = mNotificaionView;
そして、TextViewstatus_bar.xmlの次の属性
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
TextView簡単に言うと、RemoteViewsオブジェクトのようなティッカーを作成するにはどうすればよいですか?