博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
光播的一些属性设置
阅读量:6111 次
发布时间:2019-06-21

本文共 1391 字,大约阅读时间需要 4 分钟。

public class LocalReceiver extends BroadcastReceiver {

@Override

public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "我是本地广播接受者", 3).show();
Log.i("name", intent.getStringExtra("name"));

// 通过发送广播来通知,光播如果做耗时操作一般会开启服务

NotificationManager manager = (NotificationManager) context
.getSystemService(context.NOTIFICATION_SERVICE);

Intent intent2 = new Intent(context, ShowActivity.class);

PendingIntent pi = PendingIntent.getActivity(context, 0, intent2, 0);

RemoteViews rviews = new RemoteViews(context.getPackageName(),

R.layout.mynotification);
rviews.setImageViewResource(R.id.iv, R.drawable.clothing_0108);
rviews.setTextViewText(R.id.tv, "我自定义的啊");
// 声音
File mediaPathFile = new File(Environment.getExternalStorageDirectory()
.getAbsolutePath() + "/tiankong.mp3");
Uri soundUri = Uri.fromFile(mediaPathFile);
Notification notification = new Notification.Builder(context)
.setContent(rviews)
// 设置自定义通知界面
.setTicker("未读消息提示")
.setContentText("我是消息内容")
.setContentTitle("我是消息标题")
.setSmallIcon(R.drawable.ic_launcher)
.setLights(Color.RED, 1000, 1000)
.setSound(soundUri)
.setVibrate(
new long[] { 0, 2000, 1000, 2000, 1000, 2000, 1000 })
.setWhen(new Date().getTime()).setContentIntent(pi).build();

notification.flags |= Notification.FLAG_SHOW_LIGHTS;

// 点击后,自动取消
notification.flags |= Notification.FLAG_AUTO_CANCEL;
// 管理器发送
manager.notify(1, notification);
}

}

转载地址:http://zocka.baihongyu.com/

你可能感兴趣的文章
配置spring上下文
查看>>
Python异步IO --- 轻松管理10k+并发连接
查看>>
mysql-python模块编译问题解决
查看>>
熟练掌握doc命令下的文件操作
查看>>
Oracle中drop user和drop user cascade的区别
查看>>
【Linux】linux经常使用基本命令
查看>>
Java 内存区域和GC机制
查看>>
更新代码和工具,组织起来,提供所有博文(C++,2014.09)
查看>>
HTML模块化:使用HTML5 Boilerplate模板
查看>>
登记申请汇总
查看>>
Google最新截屏案例详解
查看>>
2015第31周一
查看>>
2015第31周日
查看>>
在使用EF开发时候,遇到 using 语句中使用的类型必须可隐式转换为“System.IDisposable“ 这个问题。...
查看>>
PHP使用DES进行加密和解密
查看>>
Oracle 如何提交手册Cluster Table事务
查看>>
BeagleBone Black第八课板:建立Eclipse编程环境
查看>>
在服务器上用Fiddler抓取HTTPS流量
查看>>
文件类似的推理 -- 超级本征值(super feature)
查看>>
【XCode7+iOS9】http网路连接请求、MKPinAnnotationView自定义图片和BitCode相关错误--备用...
查看>>