有沒有辦法讓自定義Notification
佈局中的TextView
看起來像代碼?我使用下面的代碼來設置Notification
佈局。通知佈局中的代碼TextView
mNotificaionView = new RemoteViews(getPackageName(), R.layout.status_bar);
mNotificaionView.setTextViewText(R.id.ticker, getLongText());
mNotification.contentView = mNotificaionView;
而對於TextView
在status_bar.xml
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:scrollHorizontally="true"
android:focusable="true"
android:focusableInTouchMode="true"
在字少下面ATTRS,如何創建一個RemoteViews
對象像TextView
一個股票?
+1這個問題說'值得注意的是,在他們的自定義通知中有一些谷歌應用使用滾動框的例子'。你知道哪一個? – 2012-07-31 21:42:14
其實我發現他談到的示例應用程序是HoneyCombGallery。但是我做了一些測試,沒有通知「類似自動收報機」。我有多年的Android平板電腦和智能手機,我從來沒有見過其他應用程序,所以我不認爲這是可能的... – Leaudro 2012-08-01 17:44:55