Androidと同じルックアンドフィールで、着信SMSを通知バーにグラフィカルに表示するには、Androidのどのリソースを使用すればよいか教えてもらえますか?
通知オブジェクトの作成中にandroid.R.drawable.ic_dialog_emailを使用しますが、システムで使用されるデフォルトよりも少し小さく見えます。
Notification notification = new NotificationCompat.Builder(ctx).setAutoCancel(true).setVibrate(vibration).setOngoing(false)
.setSmallIcon(android.R.drawable.ic_dialog_email, 1).setTicker(message).setContentText(message).setContentTitle(incomingNumber).setWhen(System.currentTimeMillis())
.setContentIntent(intent).build();
ビルダーで setSmallIcon の代わりに setLargeIcon を使用することを検討しますか?