編輯:關於Android編程
pushMessageButton = (Button)findViewById(R.id.pushMessage); final Bitmap largeIcon = ((BitmapDrawable) getResources().getDrawable(R.drawable.stefan)).getBitmap(); final NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); pushMessageButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { PendingIntent pendingIntent = PendingIntent.getActivity(BaiDuMapActivity.this, 0, new Intent().setAction(Intent.ACTION_VIEW), 0); Notification notify= new Notification.Builder(BaiDuMapActivity.this) .setSmallIcon(R.drawable.head_image) .setLargeIcon(largeIcon) .setTicker( "您有新短消息,請注意查收!") .setContentTitle("Notification Title") .setContentText("This is the notification message") .setContentIntent(pendingIntent).setNumber(1).getNotification(); notify.flags |= Notification.FLAG_AUTO_CANCEL; // FL manager.notify(1,notify); } });
沒有notification通知顯示。
1.請設置icon
2.如果API是16請將getNotification()換成build()
本文實例講述了android從系統圖庫中取圖片的實現方法。分享給大家供大家參考。具體如下:在自己應用中,從系統圖庫中取圖片,然後截取其中一部分,再返回到自己應用中。這是很
Activity與Service之間交互並播放歌曲,為了方便,我把要播放的歌曲定死了,大家可以靈活改進 MService:復制代碼 代碼如下:package c
android大家都有很多需要用戶上傳頭像的需求,有的是選方形,有的是圓角矩形,有的是圓形。首先我們要做一個處理圖片的自定義控件,把傳入的圖片,經過用戶選擇區域,處理成一
簡介MPAndroidChart是PhilJay大神給Android開發者帶來的福利。MPAndroidChart是一個功能強大並且使用靈活的圖表開源庫,支持Androi