首页

消息推送最新demo 服务器

java

2020-8-11

通知栏消息推送提示

package com.example.notificationtest;

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

public class NotificationActivity extends Activity implements OnClickListener {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.notification);
        findViewById(R.id.notificationBtn).setOnClickListener(this);
    }

	@Override
	public void onClick(View arg0) {
		// TODO Auto-generated method stub
		addNotification();
	}

	private void addNotification() {
		NotificationManager manager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
		Notification notification = new Notification();
		notification.icon = R.drawable.icon;
		notification.tickerText = "我在这里";
		notification.defaults = Notification.DEFAULT_SOUND;
		notification.audioStreamType = android.media.AudioManager.ADJUST_LOWER;
		
		Intent intent = new Intent(this, Notification2Activity.class);
		
		PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_ONE_SHOT);
		notification.setLatestEventInfo(this, "短信通知", "亲爱的,晚上8点老地方见哦~", pendingIntent);
		manager.notify(R.drawable.icon, notification);
	}
}
资源下载此资源下载价格为3D币(VIP免费),请先
资源文件列表
NotificationTest/.classpath , 364
NotificationTest/.project , 852
NotificationTest/AndroidManifest.xml , 927
NotificationTest/bin/AndroidManifest.xml , 927
NotificationTest/bin/classes.dex , 269624
NotificationTest/bin/classes/com/example/notificationtest/BuildConfig.class , 365
NotificationTest/bin/classes/com/example/notificationtest/Notification2Activity.class , 1452
NotificationTest/bin/classes/com/example/notificationtest/NotificationActivity.class , 2194
NotificationTest/bin/classes/com/example/notificationtest/R$attr.class , 370
NotificationTest/bin/classes/com/example/notificationtest/R$dimen.class , 505
NotificationTest/bin/classes/com/example/notificationtest/R$drawable.class , 505
NotificationTest/bin/classes/com/example/notificationtest/R$id.class , 456
NotificationTest/bin/classes/com/example/notificationtest/R$layout.class , 469
NotificationTest/bin/classes/com/example/notificationtest/R$menu.class , 426
NotificationTest/bin/classes/com/example/notificationtest/R$string.class , 551
NotificationTest/bin/classes/com/example/notificationtest/R$style.class , 425
NotificationTest/bin/classes/com/example/notificationtest/R.class , 773
NotificationTest/bin/jarlist.cache , 119
NotificationTest/bin/NotificationTest.apk , 127786
NotificationTest/bin/resources.ap_ , 12324
NotificationTest/bin/res/drawable-hdpi/ic_action_search.png , 409
NotificationTest/bin/res/drawable-hdpi/ic_launcher.png , 113
NotificationTest/bin/res/drawable-ldpi/ic_launcher.png , 1532
NotificationTest/bin/res/drawable-mdpi/ic_action_search.png , 311
NotificationTest/bin/res/drawable-mdpi/ic_launcher.png , 110
NotificationTest/bin/res/drawable-xhdpi/ic_action_search.png , 491
NotificationTest/bin/res/drawable-xhdpi/ic_launcher.png , 1981
NotificationTest/bin/res/drawable/icon.png , 1590
NotificationTest/gen/com/example/notificationtest/BuildConfig.java , 170
NotificationTest/gen/com/example/notificationtest/R.java , 1560
NotificationTest/ic_launcher-web.png , 18158
NotificationTest/libs/android-support-v4.jar , 271788
NotificationTest/proguard-project.txt , 781
NotificationTest/project.properties , 563
NotificationTest/res/drawable-hdpi/ic_action_search.png , 3120
NotificationTest/res/drawable-hdpi/ic_launcher.png , 100
NotificationTest/res/drawable-ldpi/ic_launcher.png , 1337
NotificationTest/res/drawable-mdpi/ic_action_search.png , 3030
NotificationTest/res/drawable-mdpi/ic_launcher.png , 88
NotificationTest/res/drawable-xhdpi/ic_action_search.png , 3199
NotificationTest/res/drawable-xhdpi/ic_launcher.png , 1845
NotificationTest/res/drawable/icon.png , 6680
NotificationTest/res/layout/notification.xml , 401
NotificationTest/res/layout/notification2.xml , 553
NotificationTest/res/menu/notification.xml , 74
NotificationTest/res/values-large/dimens.xml , 167
NotificationTest/res/values/dimens.xml , 166
NotificationTest/res/values/strings.xml , 268
NotificationTest/res/values/styles.xml , 89
NotificationTest/src/com/example/notificationtest/Notification2Activity.java , 986
NotificationTest/src/com/example/notificationtest/NotificationActivity.java , 1502
没有账号? 忘记密码?

社交账号快速登录