文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android编程自定义Notification实例分析

2022-06-06 09:22

关注

本文实例讲述了Android编程自定义Notification的用法。分享给大家供大家参考,具体如下:

Notification是一种让你的应用程序在不使用Activity的情况下警示用户,Notification是看不见的程序组件警示用户有需要注意的事件发生的最好途径。

作为UI部分,Notification对移动设备来说是最适合不过的了。用户可能随时都带着手机在身边。一般来说,用户会在后台打开几个程序,但不会注意它们。在这样的情形下,当发生需要注意的事件时,能够通知用户是很重要的。

Notification由NotificationManger统一管理,目前包含的能力有:

❑创建一个状态条图标。

❑在扩展的状态条窗口中显示额外的信息(和启动一个Intent)。

❑闪灯或LED。

❑电话震动。

❑发出听得见的警告声(铃声,保存的声音文件)。

自定义Notification效果图:

 

自定义的布局文件:


<?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:layout_height="match_parent">
 <TextView
 android:id="@+id/tv_rv"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="haha"
 />
<ProgressBar
 style="@android:style/Widget.ProgressBar.Horizontal"
 android:id="@+id/pb_rv"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 />
</LinearLayout>

创建Notification:


public class CustomNotificationActivity extends Activity {
  NotificationManager notificationManager;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    //获取到系统的notificationManager
    notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
  }
  public void click(View view ){
    //实例化一个notification
     String tickerText = "IP号码 设置完毕";
     long when = System.currentTimeMillis();
     Notification notification = new Notification(R.drawable.icon, tickerText, when);
     //不能手动清理
     //notification.flags= Notification.FLAG_NO_CLEAR;
     //添加音乐
     //notification.sound = Uri.parse("/sdcard/haha.mp3");
     //设置用户点击notification的动作
     // pendingIntent 延期的意图
     Intent intent = new Intent(this,Bactivity.class);
     PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);
     notification.contentIntent = pendingIntent;
     //自定义界面
     RemoteViews rv = new RemoteViews(getPackageName(), R.layout.noti_layout);
     rv.setTextViewText(R.id.tv_rv, "我是自定义的 notification");
     rv.setProgressBar(R.id.pb_rv, 80, 20, false);
     notification.contentView = rv;
     //把定义的notification 传递给 notificationmanager
     notificationManager.notify(0, notification);
  }
}

希望本文所述对大家Android程序设计有所帮助。

您可能感兴趣的文章:android notification 的总结分析Android中通知Notification使用实例(振动、灯光、声音)android中创建通知栏Notification代码实例Android中关于Notification及NotificationManger的详解Android编程实现拦截短信并屏蔽系统Notification的方法Android中通过Notification&NotificationManager实现消息通知详解Android中Notification通知提醒Android中Notification用法实例总结Android开发 -- 状态栏通知Notification、NotificationManager详解Android中Notification的用法汇总Android编程开发之NotiFication用法详解Android开发入门之Notification用法分析


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯