我想在我的開發應用程序的通知中放大圖標。我已經完成了通知RemortView
崩潰,並擴大布局幫助this site。低頭投手是我目前的通知狀態。如何在android中的通知中放置擴展圖標
我的代碼如下:
NotificationCompat.Builder builder = new NotificationCompat.Builder(mContext);
builder.setContentIntent(intent);
builder.setTicker(mContext.getResources().getString(R.string.custom_notification));
builder.setSmallIcon(R.drawable.ic_notification_small_basket);
builder.setAutoCancel(true);
builder.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
builder.setCustomBigContentView(expandedView);
builder.setCustomContentView(contentView);
NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(NOTIFICATION_SERVICE);
notificationManager.notify(0, builder.build());
實際我需要的是如何將展開圖標,以及如何獲取使用展開和摺疊通知一下,從通知RemortView
事件。
看起來像下面的投手。 這個投手只是一個擴展圖標的例子。
一些調整,我會從這裏開始https://developer.android.com /training/monitoring-device-state/battery-monitoring.html然後學習如何請求一個視圖對象,當你點擊一個按鈕時搜索「android onClick get view」它可能會開啓一個新的世界 – Grendel
嗨@Grendel,請看我的更新的問題。 –
這裏是一個鏈接,可能會幫助http://programmerguru.com/android-tutorial/android-broadcast-receiver-example/ – Grendel