Notification(三)——点Notification后返回当前App所在的Activity

MainActivity如下:

package cc.cu;

import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
/**
 * Demo描述:
 * 点击状态栏的通知Notification返回当前App所在的Activity,而不会重新start一个当前Activity.
 * 主要方式是为Intent设置flag
 * intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK| Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
 *
 *
 * 1 http://developer.android.com/reference/android/app/PendingIntent.html#FLAG_UPDATE_CURRENT
 * 2 http://blog.csdn.net/vipzjyno1/article/details/25248021
 *   Thank you very much
 *   在资料2中对于Notification作了很全面和详细的介绍.有兴趣的可以看看.
 *
 * 备注说明:
 * 测试环境Android2.3.6
 *
 */
public class MainActivity extends Activity {
	private Context mContext;
	private Button mButton;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.main);
		init();
	}

	private void init() {
		mContext = this;

		mButton = (Button) findViewById(R.id.button);
		mButton.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View view) {
				Intent intent=new Intent(mContext,AnotherActivity.class);
				startActivity(intent);
			}
		});
	}
}

AnotherActivity如下:

package cc.cu;

import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;

public class AnotherActivity extends Activity {
	private Context mContext;
	private Button mButton;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.other);
		init();
	}

	private void init() {
		mContext = this;

		mButton = (Button) findViewById(R.id.sendNotificationButton);
		mButton.setOnClickListener(new OnClickListener() {
			@Override
			public void onClick(View view) {
				sendNotification();
			}
		});
	}

	// 发送通知
	private void sendNotification() {
		Notification notification = new Notification();
		Intent intent = new Intent(mContext, AnotherActivity.class);
		//核心代码
		intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK| Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED);
		//如果当前Activity是MainActivity请加上以下两句
		//intent.setAction(Intent.ACTION_MAIN);
        //intent.addCategory(Intent.CATEGORY_LAUNCHER);
		PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0,intent, PendingIntent.FLAG_UPDATE_CURRENT);
		notification.icon = R.drawable.ic_launcher;
		notification.defaults = Notification.DEFAULT_SOUND;
		notification.flags |= Notification.FLAG_AUTO_CANCEL;
		notification.tickerText = "第一个通知";
		notification.setLatestEventInfo(mContext, "通知", "来自第按钮触发的通知",pendingIntent);
		NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
		notificationManager.notify(0, notification);
	}

}

main.xml如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
     <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="100dip"
        android:text="跳转到下一个界面" />
</RelativeLayout>

other.xml如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
     <Button
        android:id="@+id/sendNotificationButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="100dip"
        android:text="发送通知" />
</RelativeLayout>
时间: 2024-09-18 11:30:59

Notification(三)——点Notification后返回当前App所在的Activity的相关文章

qq-android QQ登录调起授权接口后返回时有一个透明的Activity覆盖在上面

问题描述 android QQ登录调起授权接口后返回时有一个透明的Activity覆盖在上面 android QQ登录调起授权接口后返回时有一个透明的Activity覆盖在上面,,貌似是打开了一个透明的activity但没有finish,请教怎门解决 private class BaseUiListener implements IUiListener { @Override public void onComplete(Object response) { loadingUtils.stopA

广告-在android应用程序中启动其他apk程序,被启动程序退出后返回之前的程序

问题描述 在android应用程序中启动其他apk程序,被启动程序退出后返回之前的程序 大家好,我现在遇到这样的情况,我目前做的是一个android积分墙的项目,用户通过我的这个项目app做任务下载一个广告,当用户进入到我们的下载广告的apk 后,玩了一段时间后(玩了一段时间才会给积分),点击后退,当前的 广告apk 是退出了,同时我们的项目也退出了(原本我们的项目逻辑是不会退出的),回到了桌面......我们自己测试的时候并没有出现这样的情况,但是用户遇到了,并且用户反馈再次重启手机的时候,再

图片-android PopupWindow点击EditText后返回键无法关闭。

问题描述 android PopupWindow点击EditText后返回键无法关闭. 大神们,快来看看这个神奇的问题吧!! 我在Activity弹出一个PopupWindow,PopupWindow上有一个EditText,如果我不去触碰它,我点击返回键可以把PopupWindow关闭,但是我一旦点了输入框,弹出软键盘,那这时我再怎么点返回键都没用,都关不了PopupWindow.以下是我的代码: 解决方案 把contentview 那三行删掉 试试 解决方案二: 问题应该出在这里:editt

javascript-微信网页几分钟后返回键无法访问

问题描述 微信网页几分钟后返回键无法访问 页面获取了微信的网页授权获取了用户信息和JSAPI接口,停留在页面两三分钟后手机返回键显示无法访问,复制链接为:https://open.weixin.qq.com/connect/oauth2/authorize_reply?allow=1&snsapi_userinfo=on&uuid=abcsfafafadf&uin=AbaxNzb0NTEzcA==&key=dafaoifdgbaubdfewy3135617853411bdg

httpwebrequest-C# winform程序用HttpWebRequest提交一个参数,需要服务端计算后返回结果

问题描述 C# winform程序用HttpWebRequest提交一个参数,需要服务端计算后返回结果 请求为 网址?param=XXX 我的服务器端改怎么写? 解决方案 HttpWebRequest有对应的HttpWebResponse,这个HttpWebResponse对象返回请求的页面的相应的所有信息字符串. 比如,你的请求url是"http://www.baidu.com/",那么HttpWebResponse对象返回的就应该是百度首页的html的所有字符.因此,如果你的请求页

mybatis-Mybatis操作Oracle数据库:批量修改成功后返回的值是-1?

问题描述 Mybatis操作Oracle数据库:批量修改成功后返回的值是-1? Mapper.xml <update id="updateByMultiConditions" parameterType="java.util.List"> <foreach collection="list" item="item" index="index" open="begin"

界面-在安卓中,通过button在另一个XML页面实现登录事件后返回如何让这个button消失

问题描述 在安卓中,通过button在另一个XML页面实现登录事件后返回如何让这个button消失 在安卓中,在主界面通过button按钮在另一个页面实现登录事件成功以后,返回初始主界面,让遗留的这个button按钮消失, 解决方案 给按钮隐藏不就行了啊 解决方案二: 给一个变量,可以判断 解决方案三: 1.MainActivity里这个button的点击事件跳转时使用 startActivityForResult(intent, 0);方法 2.MainActivity里重写下面的方法 pro

edittext-android想实现注册后返回登录界面自动填写刚刚的账号密码信息

问题描述 android想实现注册后返回登录界面自动填写刚刚的账号密码信息 代码如下 值传过来了 但是赋值不成功 protected void onActivityResult(int requestCode, int resultCode, Intent data) { // TODO Auto-generated method stub super.onActivityResult(requestCode, resultCode, data); Toast.makeText(getAppli

jsp里边用iframe,列表页面删除了一个元素后返回列表页怎么做到?

问题描述 jsp里边用iframe,列表页面删除了一个元素后返回列表页怎么做到? 在jsp网站开发过程中用到了iframe,iframe里边有一个列表页面,现在我在这个列表野蛮里边删除了一个元素,删除完后要返回到该列表页? 直接history.go(-1)返回之后没有刷新啊,头部加强制刷新的代码都不管用 <% response.setHeader("Pragma", "No-cache"); response.setHeader("Cache-Con