从网上查询资料学习Android消息推送机制,效果图如下:
1.首先是布局文件代码 activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="hello" />
<Button
android:id="@+id/btnStart"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="通知" />
<Button
android:id="@+id/btnStop"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="清除" />
</LinearLayout>
2.然后是java主界面代码MainActivity.java
package com.example.notificationservice;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class MainActivity extends Activity implements OnClickListener {
private Button btnStart;
private Button btnStop;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
}
private void initView() {
btnStart = (Button) findViewById(R.id.btnStart);
btnStop = (Button) findViewById(R.id.btnStop);
btnStart.setOnClickListener(this);
btnStop.setOnClickListener(this);
}
@Override
public void onClick(View v) {
int id = v.getId();
if (id == R.id.btnStart) {
// 启动Service
Intent intent = new Intent();
intent.setAction("ymw.MY_SERVICE");
startService(intent);
}
if (id == R.id.btnStop) {
// 关闭Service
Intent intent = new Intent();
intent.setAction("ymw.MY_SERVICE");
stopService(intent);
}
}
@Override
public void onBackPressed() {
System.exit(0);
super.onBackPressed();
}
}
3.然后是消息推送服务文件 NotificationService.java
package com.example.notificationservice;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
public class NotificationService extends Service {
// 获取消息线程
private MessageThread messageThread = null;
// 点击查看
private Intent messageIntent = null;
private PendingIntent messagePendingIntent = null;
// 通知栏消息
private int messageNotificationID = 1000;
private Notification messageNotification = null;
private NotificationManager messageNotificatioManager = null;
public IBinder onBind(Intent intent) {
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
// 初始化
messageNotification = new Notification();
messageNotification.icon = R.drawable.ic_launcher;
messageNotification.tickerText = "新消息";
messageNotification.defaults = Notification.DEFAULT_SOUND;
messageNotificatioManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
messageIntent = new Intent(this, MainActivity.class);
messagePendingIntent = PendingIntent.getActivity(this, 0,
messageIntent, 0);
// 开启线程
messageThread = new MessageThread();
messageThread.isRunning = true;
messageThread.start();
return super.onStartCommand(intent, flags, startId);
}
/**
* 从服务器端获取消息
*
*/
class MessageThread extends Thread {
// 设置是否循环推送
public boolean isRunning = true;
public void run() {
// while (isRunning) {
try {
// 间隔时间
Thread.sleep(1000);
// 获取服务器消息
String serverMessage = getServerMessage();
if (serverMessage != null && !"".equals(serverMessage)) {
// 更新通知栏
messageNotification.setLatestEventInfo(
getApplicationContext(), "新消息", "您有新消息。"
+ serverMessage, messagePendingIntent);
messageNotificatioManager.notify(messageNotificationID,
messageNotification);
// 每次通知完,通知ID递增一下,避免消息覆盖掉
messageNotificationID++;
}
} catch (InterruptedException e) {
e.printStackTrace();
}
// }
}
}
@Override
public void onDestroy() {
// System.exit(0);
messageThread.isRunning = false;
super.onDestroy();
}
/**
* 模拟发送消息
*
* @return 返回服务器要推送的消息,否则如果为空的话,不推送
*/
public String getServerMessage() {
return "NEWS!";
}
}
4.最后别忘了在mainfeast.xml文件中配置Service
相关推荐
Android 消息推送机制 Android 中实现消息推送机制是指在 Android 应用程序中,通过后台服务实现消息推送功能,以便在应用程序不在前台运行的情况下,仍然能够及时地将重要信息推送给用户。下面是实现 Android 消息...
1. **消息推送机制**:Android的消息推送通常基于Google的Firebase Cloud Messaging (FCM) 或者旧版的Google Cloud Messaging (GCM)。开发者需要在Google Firebase Console中创建项目并获取服务器端和客户端的API...
以下是一个简单的Android消息推送机制的实现步骤和代码实例: 1. **理解消息推送机制** 消息推送机制的核心是服务器主动与客户端通信,将重要信息推送给用户。这通常通过后台服务实现,即使用户未打开应用,也能...
本文将深入探讨Android的消息推送机制,以“android 消息栏消息推送”为主题,结合提供的链接资源(http://www.cnblogs.com/qianxudetianxia/archive/2011/05/03/2029704.html的代码),讲解如何实现在Android系统中...
Android消息推送(Notification)是Android系统提供的一种机制,允许应用程序在用户不直接与应用交互时,向用户显示重要的信息或提醒。这种服务对于提高用户体验和保持用户与应用的互动至关重要。常见的Android消息...
1. **消息推送机制** - Android的消息推送通常依赖于Google的Firebase Cloud Messaging (FCM)服务,它允许服务器向客户端发送数据,而无需客户端始终保持连接状态。 - FCM提供了两种类型的消息:通知消息和数据...
在Android开发中,消息推送机制是提升用户体验和保持用户与应用程序互动的重要手段。它使得即使应用在后台或完全关闭的情况下,也能将最新的信息推送给用户。以下是对Android中利用App实现消息推送机制的详细解析: ...
消息推送机制的模板代码,全注释,易懂~~ 有开机自启动 开启 关闭推送服务 消息到来震动,音乐提示 拉下消息栏点击消息后,带参数跳转到功能页面 根据该网页:...
这个“Android消息推送Demo”是为了帮助开发者理解和实现这一机制。描述中提到,官方提供的示例可能存在一些小问题,因此在这个版本中进行了一些修正,以提供更顺畅的体验。 Android Push Notification,即Android...
"Android消息推送"(Android Push Notifications)通常是指通过Google的Firebase Cloud Messaging(FCM,原为Google Cloud Messaging,GCM)或其他第三方服务来实现的远程消息传输机制。AndroidPN(Android Push ...
总结起来,实现Android中的消息推送机制,主要涉及创建一个独立进程的后台服务,通过网络线程与服务器保持连接,接收到消息后使用`Notification`在通知栏展示,并通过`PendingIntent`引导用户进入详情页面。...
在Android应用开发中,消息推送是一项关键功能,它允许服务器端向移动设备实时发送通知或数据,无需用户主动打开应用程序。这种技术广泛应用于新闻、社交、电商等各类应用,为用户提供即时更新和互动体验。本篇文章...
总结,基于百度云推送的Android即时通讯解决方案提供了丰富的功能和易用的API,可以帮助开发者快速实现消息推送功能,提升用户体验。理解并熟练运用上述关键技术和知识点,是成功集成和优化推送服务的基础。
描述中提到,开发者在尝试使用AndroidPN(Android Push Notification)但遇到了DNS配置问题,最终选择自建一个简化版本的消息推送服务,并采用了Struts2框架。Struts2是一个流行的Java Web框架,用于构建MVC(Model-...
AndroidPN(Android Push Notification)服务器是为Android设备提供消息推送服务的一个实现,它允许开发者向已安装的应用程序发送通知,即使应用在后台或完全关闭状态。服务器的搭建和配置是实现推送服务的关键步骤...
2. 消息推送:这是项目的核心特性,涉及如何使用Android的Notification API。 3. 示例代码:表示这是一段可供学习和模仿的代码,有助于开发者理解和实践。 【文件内容】 1. **JavaApk源码说明.txt**:这个文件可能...
在Android应用开发中,消息推送是一项重要的功能,它能让服务器实时地向用户的设备发送通知,增强用户与应用的互动性。本节我们将深入探讨“android 消息推送09_02”这一主题,主要关注如何实现Android消息推送以及...
FCM是谷歌提供的免费服务,用于向Android设备、Web应用甚至浏览器推送消息。开发者需要设置Google API项目,获取服务器密钥和客户端ID,然后在PHP服务器端编写代码来连接FCM服务并发送消息。 最后,"thinkPHP推送...