Android通过remoteViews自定义通知

1.简介

通过remoteViews我们可以自定义通知推送,但是remoteViews也有许多限制。remoteViews仅支持以下小部件:AnalogClock、Button、Chronometer、ImageButton、ImageView、ProgressBar、TextClock、TextView;仅支持以下布局:AdapterViewFlipper、FrameLayout、GridLayout、GridView
、LinearLayout、ListView、RelativeLayout、StackView
、ViewFlipper。
Android通过remoteViews自定义通知_第1张图片
Android通过remoteViews自定义通知_第2张图片
主要方法:
setViewVisibility:设置指定控件是否可见。
setViewPadding:设置指定控件的间距。
setTextViewText:设置指定TextView或Button控件的文字内容。
setTextViewTextSize:设置指定TextView或Button控件的文字大小。
setTextColor:设置指定TextView或Button控件的文字颜色。
setTextViewCompoundDrawables:设置指定TextView或Button控件的文字周围图标。
setImageViewResource:设置ImageView或ImgaeButton控件的资源编号。
setImageViewBitmap:设置ImageView或ImgaeButton控件的位图对象。
setChronometer:设置计时器信息。
setProgressBar:设置进度条信息,包括最大值与当前进度。
setOnClickPendingIntent:设置指定控件的点击响应动作。
完成RemoteViews对象的构建与设置后调用Notification对象的setContent方法,即可完成自定义通知的定义。

2.示例

  1. 自定义通知的布局文件。



    

    

        

        
    

    

        

        
  1. 使用自定义通知的代码。
private void sendCustomNotification(Context context, String song, boolean isPlay, int progress, long time) {
        Intent intent = new Intent(context, MainActivity.class);
        PendingIntent pendingIntent = PendingIntent.getActivity(context, R.string.app_name, intent, PendingIntent.FLAG_UPDATE_CURRENT);
        RemoteViews remoteViews = new RemoteViews(this.getPackageName(), R.layout.remote_view_demo);

        if(isPlay) {
            remoteViews.setTextViewText(R.id.tv_play, "正在播放" + song);
            remoteViews.setTextViewText(R.id.btn_play, "暂停");
            remoteViews.setChronometer(R.id.ch_play, time, "%s", true);
        } else {
            remoteViews.setTextViewText(R.id.tv_play, "暂停播放" + song);
            remoteViews.setTextViewText(R.id.btn_play, "播放");
            remoteViews.setChronometer(R.id.ch_play, time, "%s", false);
        }

        remoteViews.setProgressBar(R.id.pb_play, 100, progress, false);
        remoteViews.setOnClickPendingIntent(R.id.btn_play, pendingIntent);
        NotificationCompat.Builder builder = new NotificationCompat.Builder(this, "message");
        builder.setContentIntent(pendingIntent).setContent(remoteViews).setTicker(song).setSmallIcon(R.drawable.tt_s);
        Notification notification = builder.build();
        NotificationManager notificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
        notificationManager.notify(1, notification);
    }

你可能感兴趣的:(《零基础到App上线》学习笔记,《零基础到App上线》学习笔记)