Android Notification 手机系统横幅弹出提示框调用,横幅通知,RemoteViews使用实例

直接上代码

:bundle是极光推送的bundle

 

@Override
public void onReceive(Context context, Intent intent) {try {Bundle bundle = intent.getExtras();

。。。。。。

发送横幅通知方法:

     try {RemoteViews customView = new RemoteViews(context.getPackageName(), R.layout.kongreveiver);NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context);String time = getTime();
//                        String hhmm = timetodate(time);customView.setTextViewText(R.id.timemy, time);if (!TextUtils.isEmpty(bundle.getString(JPushInterface.EXTRA_TITLE))) {customView.setTextViewText(R.id.name, bundle.getString(JPushInterface.EXTRA_TITLE));}String ones = bundle.getString(JPushInterface.EXTRA_MESSAGE);JSONObject jsonObject = new JSONObject(ones);String title = jsonObject.getString("title");String type = jsonObject.getString("type");String content = jsonObject.getString("content");customView.setTextViewText(R.id.neirongte, title + ":" + content);Intent intentCancel = new Intent(context, NotificationBroadcastReceiver.class);PendingIntent pendingIntentCancel = PendingIntent.getBroadcast(context, 0,intentCancel, PendingIntent.FLAG_ONE_SHOT);Intent companyIntroduce = new Intent(context, TwoMainActivity.class);companyIntroduce.putExtra("type", type);
//        companyIntroduce.putExtra("name", name);int notifyId = (int) System.currentTimeMillis();PendingIntent pendingIntent = PendingIntent.getActivity(context, notifyId, companyIntroduce, PendingIntent.FLAG_UPDATE_CURRENT);NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);mBuilder//设置通知栏标题
//                                .setContentText(bundle.getString(JPushInterface.EXTRA_MESSAGE)) //设置通知栏显示内容.setContent(customView).setContentIntent(pendingIntent) //设置通知栏点击意图.setDeleteIntent(pendingIntentCancel)//取消消息回调
//                .setTicker(context.getPackageName() + "消息")//通知首次出现在通知栏,带上升动画效果的.setWhen(System.currentTimeMillis())//通知产生的时间,会在通知信息里显示,一般是系统获取到的时间.setPriority(Notification.PRIORITY_DEFAULT) //设置该通知优先级.setAutoCancel(true)//设置这个标志当用户单击面板就可以让通知将自动取消
//.setOngoing(false)//ture,设置他为一个正在进行的通知。他们通常是用来表示一个后台任务,用户积极参与(如播放音乐)或以某种方式正在等待,因此占用设备(如一个文件下载,同步操作,主动网络连接).setDefaults(Notification.DEFAULT_VIBRATE)//向通知添加声音、闪灯和振动效果的最简单、最一致的方式是使用当前的用户默认设置,使用defaults属性,可以组合.setDefaults(Notification.DEFAULT_SOUND)
//Notification.DEFAULT_ALL  Notification.DEFAULT_SOUND 添加声音 // requires VIBRATE permission.setSmallIcon(R.mipmap.txlogo);
//        mNotificationManager.notify(notifyId, notify);
//        Log.i("lgqq","body=====id============"+tzid+"....."+ones);int num = ShareUtil.getSharedInt("num");num++;ShareUtil.sharedPint("num", num);mNotificationManager.notify(num, mBuilder.build());} catch (JSONException e) {e.printStackTrace();}

时间工具:

    public String getTime() {long currentTime = System.currentTimeMillis();SimpleDateFormat formatter = new SimpleDateFormat("HH时mm分");Date date = new Date(currentTime);System.out.println(formatter.format(date));//        long time=System.currentTimeMillis()/1000;//获取系统时间的10位的时间戳String str = String.valueOf(formatter.format(date));return str;}

 

通知的布局文件内容kongreveiver.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="match_parent"android:background="@color/white"android:layout_height="wrap_content"><LinearLayoutandroid:layout_width="match_parent"android:gravity="center_vertical"android:orientation="horizontal"android:weightSum="6"android:layout_height="wrap_content"><LinearLayoutandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="4.8"android:gravity="center_vertical"android:orientation="vertical"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:layout_marginTop="10dp"android:orientation="horizontal"><TextViewandroid:id="@+id/name"android:layout_width="wrap_content"android:layout_height="wrap_content"android:textColor="@color/black_cc"android:layout_marginLeft="12dp"android:text="天鑫运维"/><TextViewandroid:id="@+id/timemy"android:layout_width="match_parent"android:layout_height="wrap_content"android:gravity="end"android:text="sssss"android:layout_marginRight="40dp"android:textColor="@color/numtext" /></LinearLayout><TextViewandroid:layout_marginLeft="12dp"android:id="@+id/neirongte"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="neir"android:textColor="@color/bartoptec"android:textSize="16dp"android:layout_marginBottom="10dp"android:layout_marginTop="2dp" /></LinearLayout><LinearLayoutandroid:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1.2"android:gravity="center"><ImageViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_margin="5dp"android:src="@mipmap/ic_launcher"/></LinearLayout></LinearLayout></LinearLayout>

 

 系统通知

 

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(APPlocation.getTotalContext());
NotificationManager mNotificationManager = (NotificationManager) APPlocation.getTotalContext().getSystemService(Context.NOTIFICATION_SERVICE);if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {NotificationChannel channel = new NotificationChannel("com.tianxin.service2thread",TAG,NotificationManager.IMPORTANCE_DEFAULT);mNotificationManager.createNotificationChannel(channel);}mBuilder.setChannelId("com.tianxin.service2thread");//当前包名
mBuilder.setContentText("内容");
Intent notificationIntent = new Intent(this, TwoActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,notificationIntent, 0);
mBuilder.setContentIntent(pendingIntent);
mBuilder.setSmallIcon(R.mipmap.ic_launcher);
mNotificationManager.notify(1, mBuilder.build());

 

Android 8.0系统不出通知解决方法:https://blog.csdn.net/meixi_android/article/details/83379335

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/415175.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

前端学习(2667):退出编辑状态

1逻辑实现 2加上myinput 3判断myinput 调整元素 4

《构建之法》阅读笔记01

本周阅读了《构建之法》的第一章《概论》以及第四章《两人合作》。 《概论》旨在说明软件工程的概念。 作为一个程序员&#xff0c;几乎没有谁不知道“程序算法数据结构”这句名言的&#xff0c;而这本书中&#xff0c;则又提出了另一个概念“软件程序软件工程”&#xff0c;“…

Android 帧动画,加载动画,AnimationDrawable,仿京东加载动画

1、创建drawable文件ring_animation.xml <?xml version"1.0" encoding"utf-8"?> <animation-list xmlns:android"http://schemas.android.com/apk/res/android"><item android:drawable"mipmap/windmill_1"android:…

前端学习(2668):删除功能

1定义删除 2删除方法 3删除演示

mac 通过 homebrew 安装mongodb

通过homebrew安装mongodb非常省事&#xff0c;但是如果没有科学上网&#xff0c;可能比较慢&#xff0c;下面是官方安装教程链接&#xff1a; https://github.com/mongodb/homebrew-brew 主要步骤 1、brew tap mongodb/brew 2、brew install mongodb-community 3、启动 br…

SICK TiM561激光雷达的使用

TIM系列激光扫描传感器原理&#xff1a; 激光发射器发出激光脉冲&#xff0c;当激光碰到物体后&#xff0c;部分激光反射回激光接收器。通过计算发射/接收脉冲时间差&#xff0c;可以计算出距离值。激光扫描器连续不停的发射激光脉冲&#xff0c;由旋转的光学机构将激光脉冲按一…

简易listview与adapter实现列表,ArrayAdapter和BaseAdapter

item.xml <?xml version"1.0" encoding"utf-8"?> <LinearLayout xmlns:android"http://schemas.android.com/apk/res/android"android:layout_width"match_parent"android:layout_height"match_parent"android:…

Netcdf文件导出基本代码示例

需求&#xff1a;从一个nc文件中取出我想要的变量&#xff0c;导出到另外一个nc文件。 下面是基本代码&#xff1a; GetMapping("/export") public String varExport(ModelAttribute FileSaveVars params ) throws IOException, InvalidRangeException { // 1…

记一次MySQL手工注入

本来想找个装安全狗的站试下绕过&#xff0c;safe dog没找到&#xff0c;但随便一搜搜到一个小站有SQLi&#xff0c;正好借此机会复习下手工注入&#xff08;新版Firefox我吐槽一下&#xff0c;hackbar这么好用的工具&#xff0c;说阉割就阉割&#xff0c;哎&#xff09; 小站没…

Netcdf对数据进行裁剪

对三维数据进行裁剪 List<Range> tyxRanges new ArrayList<>(); tyxRanges.add(new Range(null,0,12)); tyxRanges.add(new Range(null,0,12)); tyxRanges.add(new Range(null,0,12)); Array varData varObject.read(tyxRanges); ncWrite.write(varVar, varData…

Android: 解决动画完成后位置恢复到初始位置的问题

今天在使用TranslateAnimation位移一个LinearLayout时&#xff0c;发现动画完成后又会自动回到初始的状态&#xff0c;设置了fillAfter也不太管用。 仔细研究了一下&#xff0c;发现&#xff1a; 这种现象很正常&#xff0c;因为TranslateAnimation只负责实现位移动画效果&…

Netcdf中时间的格式化

需求&#xff1a;获取到的时间格式为minutes since 2018-01-01 00:30:00 我想要的格式为2018-01-01 00:30:00 java代码如下 // 4 设置时间变量 Variable timeObject ncFile.findVariable("time"); String timeAt timeObject.getUnitsString(); String regex &q…

Android GridView,recycleview,栅格布局

<color name"gray_b7">#F5F5F5</color>//activity背景色&#xff0c;itemview底部&#xff08;横向栅格条&#xff09;背景色&#xff0c;itemview主色白 设置竖向栅格条 adapter中设置 int w MainApplication.getnScreenWidth();holder.itemView.set…

PAT——1027. 打印沙漏

本题要求你写个程序把给定的符号打印成沙漏的形状。例如给定17个“*”&#xff0c;要求按下列格式打印 ************ *****所谓“沙漏形状”&#xff0c;是指每行输出奇数个符号&#xff1b;各行符号中心对齐&#xff1b;相邻两行符号数差2&#xff1b;符号数先从大到小顺序递减…

Netcdf中多变量导出代码示例

多个变量进行导出代码如下&#xff1a; GetMapping("/export")public String varExport(ModelAttribute FileSaveVars params ) throws IOException, InvalidRangeException { // 1 设置原始文件路径转存文件路径String filePath "/Users/caowei/workspac…

Android 微信分享

起调效果 分享到朋友 分享到朋友圈 分享效果&#xff1a; 1、登录 微信开发平台 创建Android应用 微信开放平台&#xff1a;https://open.weixin.qq.com/cgi-bin/index?thome/ind…