Android高仿UC浏览器和360手机卫士消息常驻栏(通知栏)

之前网上看了下自己定义消息栏,通知栏,了解到了Notification这个控件。发现UC浏览器等都是这样的类型,今天写个demo实现下。如图:

当中每一个button都有不同的功能。代码例如以下:

package com.example.textwsjdemo;

import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.view.KeyEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.RemoteViews;
import android.widget.Toast;

public class MainActivity extends Activity {

	private Button bt_hehe;
	private NotificationManager notificationManager;
	private Notification notification;
	private int icon;
	private CharSequence tickerText;
	private long when;
	RemoteViews contentView;
	private Intent intent;
	private PendingIntent pendingIntent;
	private int notification_id = 0;
	private MyBroadCast receiver;
	private static String ACTION = "a";

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		receiver = new MyBroadCast();
		IntentFilter filter = new IntentFilter();
		filter.addAction("a");
		filter.addAction("b");
		filter.addAction("c");
		filter.addAction("d");
		registerReceiver(receiver, filter);

		initView();
		initData();

	}

	private void initData() {
		icon = R.drawable.ic_launcher; // 通知图标
		tickerText = "Hello"; // 状态栏显示的通知文本提示
		when = System.currentTimeMillis(); // 通知产生的时间,会在通知信息里显示
	}

	private void initView() {
		bt_hehe = (Button) findViewById(R.id.bt_hehe);
		bt_hehe.setOnClickListener(new OnClickListener() {

			@Override
			public void onClick(View v) {
				// TODO Auto-generated method stub
				// 启动提示栏
				createNotification();
			}
		});
	}

	private void createNotification() {
		notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
		notification = new Notification();
		notification.icon = icon;
		notification.tickerText = tickerText;
		notification.when = when;

		/***
		 * 在这里我们用自定的view来显示Notification
		 */
		contentView = new RemoteViews(getPackageName(),
				R.layout.notification_item);
		contentView.setTextViewText(R.id.text11, "小说");
		contentView.setTextViewText(R.id.text22, "视频");
		contentView.setTextViewText(R.id.text33, "新闻");
		contentView.setTextViewText(R.id.text44, "扯淡");
		// contentView.setTextViewText(R.id.notificationPercent, "0%");
		// contentView.setProgressBar(R.id.notificationProgress, 100, 0, false);
		// //进度条
		// contentView.setImageViewResource(R.id.image,R.drawable.more_advice);
		// //载入图片
		// contentView.setImageViewResource(R.id.image,R.drawable.more_attention);
		// contentView.setImageViewResource(R.id.image,R.drawable.more_evaluate);
		// contentView.setImageViewResource(R.id.image,R.drawable.more_about);
		// contentView.setTextViewText(R.id.text,"Hello,this message is in a custom expanded view");
		// //文本

		notification.flags = Notification.FLAG_ONGOING_EVENT; // 设置常驻。不能滑动取消
		//默认跳转的主界面
		intent = new Intent(this, MainActivity.class);
		intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
		pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);

		//自己定义跳转
		contentView.setOnClickPendingIntent(R.id.ll_11, PendingIntent.getBroadcast(MainActivity.this, 11, new Intent().setAction("a"), PendingIntent.FLAG_UPDATE_CURRENT));
		contentView.setOnClickPendingIntent(R.id.ll_22, PendingIntent.getBroadcast(MainActivity.this, 11, new Intent().setAction("b"), PendingIntent.FLAG_UPDATE_CURRENT));
		contentView.setOnClickPendingIntent(R.id.ll_33, PendingIntent.getBroadcast(MainActivity.this, 11, new Intent().setAction("c"), PendingIntent.FLAG_UPDATE_CURRENT));
		contentView.setOnClickPendingIntent(R.id.ll_44, PendingIntent.getBroadcast(MainActivity.this, 11, new Intent().setAction("d"), PendingIntent.FLAG_UPDATE_CURRENT));
		notification.contentView = contentView;
		notification.contentIntent = pendingIntent;
		notificationManager.notify(notification_id, notification);
	}

	// 取消通知
	private void cancelNotification() {
		notificationManager.cancelAll();
	}

	@Override
	protected void onDestroy() {
		cancelNotification();
		unregisterReceiver(receiver);

	}

	@Override
	public boolean onKeyDown(int keyCode, KeyEvent event) {
		if ((keyCode == KeyEvent.KEYCODE_BACK)) {
			System.out.println("按下了back键   onKeyDown()");
			cancelNotification();
		}
		return super.onKeyDown(keyCode, event);
	}

	class MyBroadCast extends BroadcastReceiver {

		@Override
		public void onReceive(Context context, Intent intent) {
			if(intent.getAction().equals("a")){
				Toast.makeText(MainActivity.this, "11111111111111",
						Toast.LENGTH_LONG).show();
				startActivity(new Intent(MainActivity.this, ActivityText1.class));
			}
			if(intent.getAction().equals("b")){
				Toast.makeText(MainActivity.this, "222222222222222",
						Toast.LENGTH_LONG).show();
				startActivity(new Intent(MainActivity.this, ActivityText2.class));
			}
			if(intent.getAction().equals("c")){
				Toast.makeText(MainActivity.this, "333333333333",
						Toast.LENGTH_LONG).show();
				startActivity(new Intent(MainActivity.this, ActivityText3.class));
			}
			if(intent.getAction().equals("d")){
				Toast.makeText(MainActivity.this, "4444444444444",
						Toast.LENGTH_LONG).show();
				startActivity(new Intent(MainActivity.this, ActivityText4.class));
			}

		}

	}

}

下面是一些属性的设置:

/*
* 加入声音
* notification.defaults |=Notification.DEFAULT_SOUND;
* 或者使用下面几种方式
* notification.sound = Uri.parse("file:///sdcard/notification/ringer.mp3");
* notification.sound = Uri.withAppendedPath(Audio.Media.INTERNAL_CONTENT_URI, "6");
* 假设想要让声音持续反复直到用户对通知做出反应,则能够在notification的flags字段添加"FLAG_INSISTENT"
* 假设notification的defaults字段包含了"DEFAULT_SOUND"属性,则这个属性将覆盖sound字段中定义的声音
*/
/*
* 加入振动
* notification.defaults |= Notification.DEFAULT_VIBRATE;
* 或者能够定义自己的振动模式:
* long[] vibrate = {0,100,200,300}; //0毫秒后開始振动,振动100毫秒后停止,再过200毫秒后再次振动300毫秒
* notification.vibrate = vibrate;
* long数组能够定义成想要的不论什么长度
* 假设notification的defaults字段包含了"DEFAULT_VIBRATE",则这个属性将覆盖vibrate字段中定义的振动
*/
/*
* 加入LED灯提醒
* notification.defaults |= Notification.DEFAULT_LIGHTS;
* 或者能够自己的LED提醒模式:
* notification.ledARGB = 0xff00ff00;
* notification.ledOnMS = 300; //亮的时间
* notification.ledOffMS = 1000; //灭的时间
* notification.flags |= Notification.FLAG_SHOW_LIGHTS;
*/
/*
* 很多其它的特征属性
* notification.flags |= FLAG_AUTO_CANCEL; //在通知栏上点击此通知后自己主动清除此通知
* notification.flags |= FLAG_INSISTENT; //反复发出声音,直到用户响应此通知
* notification.flags |= FLAG_ONGOING_EVENT; //将此通知放到通知栏的"Ongoing"即"正在执行"组中
* notification.flags |= FLAG_NO_CLEAR; //表明在点击了通知栏中的"清除通知"后。此通知不清除,
* //常常与FLAG_ONGOING_EVENT一起使用
* notification.number = 1; //number字段表示此通知代表的当前事件数量,它将覆盖在状态栏图标的顶部
* //假设要使用此字段,必须从1開始
* notification.iconLevel = ; //
*/

源码下载:点击下载

时间: 2024-10-26 11:05:11

Android高仿UC浏览器和360手机卫士消息常驻栏(通知栏)的相关文章

高仿360手机卫士——Android源码

高仿360手机卫士 高仿360手机卫士界面android源码,左右滑动效果,超炫. 下载地址:http://www.devstore.cn/code/info/1173.html 运行截图:    热门源码下载: 高仿京东商城 Android快速开发不可或缺的11个工具类 Android快速开发框架LoonAndroid Android应用源码比较不错的新闻客户端 版权声明:本文为博主原创文章,未经博主允许不得转载.

Android桌面悬浮窗效果实现,仿360手机卫士悬浮窗效果

转载请注明出处:http://blog.csdn.net/guolin_blog/article/details/8689140 大家好,今天给大家带来一个仿360手机卫士悬浮窗效果的教程,在开始之前请允许我说几句不相干的废话. 不知不觉我发现自己接触Android已有近三个年头了,期间各种的成长少不了各位高手的帮助,总是有很多高手喜欢把自己的经验写在网上,供大家来学习,我也是从中受惠了很多,在此我深表感谢.可是我发现我却从来没有将自己平时的一些心得拿出来与大家分享,共同学习,太没有奉献精神了.

高仿360手机卫士

高仿360手机卫士 高仿360手机卫士,实现了大部分模块的功能,模块划分极度清晰,可以一个个引用,界面设计采用的现在主流的模式,有各种动画效果,很容易移植到自己的工程里. 下载地址:http://www.devstore.cn/code/info/825.html 运行截图:    

Android 高仿 频道管理----网易、今日头条、腾讯视频 (可以拖动的GridView)附源码DEMO

距离上次发布(android高仿系列)今日头条 --新闻阅读器 (二) 相关的内容已经半个月了,最近利用空闲时间,把今日头条客户端完善了下.完善的功能一个一个全部实现后,就放整个源码.开发的进度就是按照一个一个功能的思路走的,所以开发一个小的功能,如果有用,就写一个专门的博客以便有人用到独立的功能可以方便使用. 这次实现的功能是很多新闻阅读器(网易,今日头条,360新闻等)以及腾讯视频等里面都会出现的频道管理功能. 下面先上这次实现功能的效果图:(注:这个效果图没有拖拽的时候移动动画,DEMO里

【Android】仿UC网络判断效果

[Android]仿UC网络判断效果 利用BroadcastReceive广播接收器来监听网络状态的变化,然后呼出自定义窗口Activity来进行网络的打开关闭操作. 下载地址:http://www.devstore.cn/code/info/278.html 运行截图: 热门源码下载: 高仿京东商城 Android快速开发不可或缺的11个工具类 Android快速开发框架LoonAndroid Android应用源码比较不错的新闻客户端 版权声明:本文为博主原创文章,未经博主允许不得转载.

Android 高仿 QQ5.0 侧滑菜单效果 自定义控件来袭【学习鸿洋_视频博客笔记总结】

学习鸿洋博客:http://blog.csdn.net/lmj623565791/article/details/39257409 学习鸿洋视频:慕课网视频 看看Android 高仿 QQ5.0 侧滑菜单效果 自定义控件实现效果: 技术上,继承HorizontalScrollView 加上自定义ViewGroup来实现: 1.onMeasure:决定内部View(子View)的宽和高,以及自己的宽和高 2.onLayout:决定子View的放置位置 3.onTouchEvent[监听动作] 自定

Android高仿QQ消息滑动删除(附源码)

大家都应该使用过QQ吧,他的消息中可以滑动删除功能,我觉得比较有意思,所以模仿写了一个,并且修改了其滑动算法.我先贴几个简单示范图吧 其实主要用的是算法以及对ListView的把控. 一下是适配器的类 ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52

(android高仿系列)今日头条 --新闻阅读器 (三) 完结 、总结 篇

从写第一篇今日头条高仿系列开始,到现在已经过去了1个多月了,其实大体都做好了,就是迟迟没有放出来,因为我觉得,做这个东西也是有个过程的,我想把这个模仿中一步一步学习的过程,按照自己的思路写下来,在根据碰到的知识点和问题,并且罗列出这些东西的知识点和使用方法.如果你单纯的把做好的一个DEMO拿去改改用用,那样,你永远不知道里面用到的内容是涉及到什么知识点,用什么方法实现,那样就没有多少提升价值而言了. 近期都是在通过开发文档把以前的一些东西重新过一遍,看好多网友都催促想要新版本的,那我就在这里先把

360手机卫士插件化RePlugin今日开源

写在前面 "RePlugin将在6月底开源,这将是我们献给安卓世界最好的礼物."当我们宣布这一消息时,心中的激动,无以言表.是的,三年的"厚积",如今的"薄发",看似平凡的话,实际上却饱含了我们太多的激动.辛酸与泪. 那么今天,我们就来详细的和您聊一聊,这个从2014年中旬,正式在手机卫士上启用,并即将开源的360 RePlugin,究竟能为我们,更为您能带来什么. GitHub地址:https://github.com/Qihoo360/ReP