- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 GCM(Google Cloud Messaging)实现 Android 应用程序。我的特定服务器是由 PHP 编写的,我的客户端是 Android 应用程序。当应用程序运行时,推送通知消息可以很好地接收。 logcat 是这样的:
07-28 07:49:56.991: V/GCMBroadcastReceiver(13254): onReceive: com.google.android.c2dm.intent.RECEIVE
07-28 07:49:56.991: V/GCMRegistrar(13254): Setting the name of retry receiver class to com.appacoustic.android.g.gcm.GGCMBroadcastReceiver
07-28 07:49:57.011: D/GGCMBroadcastReceiver(13254): Servicio: com.appacoustic.android.g.gcm.GGCMIntentService
07-28 07:49:57.011: V/GCMBroadcastReceiver(13254): GCM IntentService class: com.appacoustic.android.g.gcm.GGCMIntentService
07-28 07:49:57.021: V/GCMBaseIntentService(13254): Intent service name: GCMIntentService-<<<MyProjectNumber>>>-1
07-28 07:49:57.026: D/GGCMIntentService(13254): Mensaje recibido: <<<MySendedMessage>>>
但是当它停止(不是暂停)时,如果我从主机发送消息,就会出现典型的 Toast 崩溃。logcat错误是这样的:
07-28 07:50:06.381: V/GCMBroadcastReceiver(13294): onReceive: com.google.android.c2dm.intent.RECEIVE
07-28 07:50:06.386: V/GCMRegistrar(13294): Setting the name of retry receiver class to com.appacoustic.android.g.gcm.GGCMBroadcastReceiver
07-28 07:50:06.386: D/GGCMBroadcastReceiver(13294): Servicio: com.appacoustic.android.g.gcm.GGCMIntentService
07-28 07:50:06.386: V/GCMBroadcastReceiver(13294): GCM IntentService class: com.appacoustic.android.g.gcm.GGCMIntentService
07-28 07:50:06.396: D/AndroidRuntime(13294): Shutting down VM
07-28 07:50:06.396: W/dalvikvm(13294): threadid=1: thread exiting with uncaught exception (group=0x4163bc50)
07-28 07:50:06.401: E/AndroidRuntime(13294): FATAL EXCEPTION: main
07-28 07:50:06.401: E/AndroidRuntime(13294): Process: com.planetdevices.android.loyalty, PID: 13294
07-28 07:50:06.401: E/AndroidRuntime(13294): java.lang.RuntimeException: Unable to instantiate service com.appacoustic.android.g.gcm.GGCMIntentService: java.lang.NullPointerException
我猜问题是关于唤醒服务,但实际上我测试了太多东西,我真的很困惑和疲惫......
我在库项目中制作了一个包来实现 GCM。代码是这样的:
GGCMIntentService.java
package com.appacoustic.android.g.gcm;
...
/**
* @author AppAcoustiC <p>
* Servicios GCM. Básicamente son todo callbacks.
*/
public class GGCMIntentService extends GCMBaseIntentService {
private static final String tag = "GGCMIntentService";
/**
* Constructor.
*/
public GGCMIntentService() {
super(SENDER_ID); // Llamamos a la superclase
} // GGCMIntentService()
/**
* Es lo que hace al registrarse el dispositivo.
*/
@Override
protected void onRegistered(Context context, String registrationId) {
Log.i(tag, "Dispositivo registrado: regId = " + registrationId);
Log.d("name: ", GGCM.name);
Log.d("email: ", GGCM.email);
displayMessage(context, getString(R.string.gcm_registered)); // Mostramos un mensaje informativo por pantalla
GServerUtilities.register(context, registrationId, GGCM.name, GGCM.email); // Nos registramos en nuestro Servidor dedicado (Planet Devices)
} // onRegistered()
/**
* Es lo que se hace al eliminar el registro.
*/
@Override
protected void onUnregistered(Context context, String registrationId) {
Log.i(tag, "Eliminado el registro del dispositivo.");
displayMessage(context, getString(R.string.gcm_unregistered)); // Mostramos un mensaje informativo por pantalla
if (GCMRegistrar.isRegisteredOnServer(context)) { // Si ya está registrado en nuestro Servidor
GServerUtilities.unregister(context, registrationId); // Se desregistra de éste
} else {
// Este callback se hace al tratar de borrar el registro desde la clase ServerUtilities cuando el registro en el Servidor falla
Log.i(tag, "Se ha ignorado el callback de anulación de registro.");
}
} // onUnregistered()
/**
* Notificación recibida.
*/
@Override
protected void onMessage(Context context, Intent intent) {
String message = intent.getStringExtra(GCommonUtilities.EXTRA_MESSAGE); // Recojo el mensaje
Log.d(tag, "Mensaje recibido: " + message);
displayMessage(context, message); // Lo mostramos por pantalla
generateNotification(context, message); // Se lo notificamos al usuario (mensaje emergente)
} // onMessage()
/**
* Cuando se borran los mensajes.
*/
@Override
protected void onDeletedMessages(Context context, int total) {
Log.i(tag, "Recibida la notificación de mensajes eliminados.");
String message = getString(R.string.gcm_deleted, total); // Recojo el string y el nº de mensajes borrados SERÁ SIEMPRE EL MISMO STRING AL COGERLO DE LOS R.STRING ???
displayMessage(context, message); // Lo mostramos por pantalla
generateNotification(context, message); // Se lo notificamos al usuario (mensaje emergente)
} // onDeletedMessages()
/**
* Al producirse un error.
*/
@Override
public void onError(Context context, String errorId) {
Log.i(tag, "Error recibido: " + errorId);
displayMessage(context, getString(R.string.gcm_error, errorId)); // Lo mostramos por pantalla
} // onError()
/**
* Al producirse un error recuperable.
*/
@Override
protected boolean onRecoverableError(Context context, String errorId) {
Log.i(tag, "Recibido error recuperable: " + errorId);
displayMessage(context, getString(R.string.gcm_recoverable_error, errorId)); // Lo mostramos por pantalla
return super.onRecoverableError(context, errorId); // Devolvemos un booleano para saber como ha ido la cosa
} // onRecoverableError()
/**
* Genera una notificación para que el usuario sea informado de que ha recibido un mensaje.
*/
private static void generateNotification(Context context, String message) {
int icon = R.drawable.ic_launcher; // Icono que aparece en la barra de notificaciones (será el de la app desde donde creemos el objeto GGCM)
long when = System.currentTimeMillis(); // Instante en el que se produce la notificación
// Creamos la notificación:
NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(icon, message, when);
String title = context.getString(R.string.app_name); // Título de la notificación (Nombre de la app)
// Gestionamos el Intent de la notificación:
Intent notificationIntent = new Intent(context, GGCM.NotificationActivity); // Lo configuramos para que empiece una nueva Actividad (NotificationActivity)
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, title, message, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notification.defaults |= Notification.DEFAULT_SOUND; // Sonido de notificación por defecto
// ¡¡¡ POR SI QUEREMOS USAR NUESTRO PROPIO SONIDO PERSONALIZADO !!!
//notification.sound = Uri.parse("android.resource://" + context.getPackageName() + "your_sound_file_name.mp3");
notification.defaults |= Notification.DEFAULT_VIBRATE; // Vibra (si la vibración está activa, claro)
notificationManager.notify(0, notification); // Notificamos (con todos los parámetros incluidos)
} // generateNotification()
} // GGCMIntentService
GGCM.java
package com.appacoustic.android.g.gcm;
...
/**
* @author AppAcoustiC <p>
* Engloba todo lo que conlleva el sistema Google Cloud Messaging.
*/
public class GGCM {
private final String tag = "GGCM";
private Context context;
// Variables que meteremos en la base de datos de nuestro Servidor particular:
static String name;
static String email;
static Class<?> NotificationActivity;
AsyncTask<Void, Void, Void> mRegisterTask; // Tarea de registro
AsyncTask<Void, Void, Void> mUnregisterTask; // Tarea de eliminación del registro
/**
* Constructor.
* @param context Contexto de la Actividad.
* @param SERVER_URL Base URL del Servidor (directorio raíz).
* @param SENDER_ID ID del proyecto en cuestión registrado para usar GCM.
* @param userName Nombre del usuario de la aplicación.
* @param cls Actividad que se inicia al pulsar las notificaciones recibidas.
*/
public GGCM(final Context context,
String SERVER_URL,
String SENDER_ID,
String userName,
Class<?> cls) {
// Primero de nada, comprobamos que está todo en orden para que el GCM funcione.
// Qué el dispositivo soporta GCM y que el Manifest está bien configurado. Esto, una vez testeado se puede comentar:
//checker(context);
// Comprobacion rutinaria de que tenemos inicializadas la variables que indican el Servidor y el ID del proyecto GCM:
G_A.checkNotNull(SERVER_URL, "SERVER_URL");
G_A.checkNotNull(SENDER_ID, "SENDER_ID");
// Asignamos los parámetros a las variables que usamos dentro del paquete:
this.context = context;
GCommonUtilities.SERVER_URL = SERVER_URL;
GCommonUtilities.SENDER_ID = SENDER_ID;
name = userName;
email = G_A.getEmailAdress(context);
NotificationActivity = cls;
// Comprobamos la conexión a internet:
GConnectionDetector gCD = new GConnectionDetector(context);
if (!gCD.isConnectingToInternet()) { // Si no hay internet
// Creamos nuestro Diálogo de alerta particular
GAlertDialog.showAlertDialog(context,
"Error de conexión a Internet",
"Por favor, conéctese para poder hacer uso de la aplicación.",
false);
return; // Paramos la ejecución del programa
}
context.registerReceiver(mHandleMessageReceiver, new IntentFilter(GCommonUtilities.DISPLAY_MESSAGE_ACTION)); // Registramos el receptor
} // GGCM()
/**
* Registra el dispositivo en el que está instalada la app.
*/
public void registerDevice() {
final String regId = GCMRegistrar.getRegistrationId(context); // Obtenemos el ID de registro
if (regId.equals("")) { // Si es "" es que aún no estamos registrados
GCMRegistrar.register(context, GCommonUtilities.SENDER_ID); // Nos registramos
Log.i(tag, "Nos acabamos de registrar en el GCM.");
} else {
// El dispositivo ya está registrado. Comprobamos el Servidor:
if (GCMRegistrar.isRegisteredOnServer(context)) {
// Nos saltamos el registro en el Servidor. Simplemente mostramos un mensaje por pantalla:
G_A.showToast(context, context.getString(R.string.already_registered), Toast.LENGTH_SHORT);
Log.i(tag, "Ya está registrado en nuestro Servidor.");
} else {
// Tratamos de registrarnos de nuevo. Hay que hacerlo mediante una Tarea Asíncrona:
mRegisterTask = new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
boolean registered = GServerUtilities.register(context, regId, name, email);
// Si llegados a este punto, todos los intentos de registrar el dispositivo a nuestro Servidor (Planet Devices) fallan,
// necesitaremos desregistrar el dispositivo desde GCM. La aplicación tratará de registrarse de nuevo cuando se reinicie.
// Hay que tener en cuenta que GCM enviará una devolución de llamada (callback) de borrado de registro al finalizar,
// pero GGCMIntentService.onUnregistered() lo ignorará:
if (!registered) {
GCMRegistrar.unregister(context); // Eliminamos el registro
}
return null;
} // doInBackground()
@Override
protected void onPostExecute(Void result) {
mRegisterTask = null; // Liberamos memoria
} // onPostExecute()
};
mRegisterTask.execute(null, null, null); // Ejecutamos la tarea
}
}
} // registerDevice()
/**
* Elimina el registro del dispositivo que tiene instalada la aplicación.
*/
public void unregisterDevice() {
final String regId = GCMRegistrar.getRegistrationId(context); // Obtenemos el ID de registro
//GServerUtilities.unregister(context, regId);
if (regId.equals("")) { // Si es "" es que aún no estamos registrados
Log.i(tag, "Nos estamos aún registrados. No se puede anular el registro.");
G_A.showToast(context, context.getString(R.string.already_unregistered), Toast.LENGTH_SHORT); // ESTO NO FUNCIONA COMO BEBERÍA !!!
} else {
// Tratamos de eliminar el registro. Hay que hacerlo mediante una Tarea Asíncrona:
mUnregisterTask = new AsyncTask<Void, Void, Void>() {
@Override
protected Void doInBackground(Void... params) {
GServerUtilities.unregister(context, regId); // Nos "desregistramos"
return null;
} // doInBackground()
@Override
protected void onPostExecute(Void result) {
mUnregisterTask = null; // Liberamos memoria
} // onPostExecute()
};
mUnregisterTask.execute(null, null, null); // Ejecutamos la tarea
}
} // unregisterDevice()
/**
* Comprobamos si el dispositivo soporta GCM y que el Manifest está bien configurado.
*/
private void checker(Context context) {
try {
GCMRegistrar.checkDevice(context);
Log.i(tag, "El dispositivo soporta GCM.");
GCMRegistrar.checkManifest(context);
Log.i(tag, "El Manifest está correctamente.");
} catch (UnsupportedOperationException e) {
Log.e(tag, "El dispositivo no soporta GCM.", e);
} catch (IllegalStateException e) {
Log.e(tag, "El Manifest no está bien configurado.", e);
}
} // checker()
/**
* Manejador para recibir mensajes.
*/
private final BroadcastReceiver mHandleMessageReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String newMessage = intent.getExtras().getString(GCommonUtilities.EXTRA_MESSAGE); // Recogemos el mensaje
GWakeLocker.acquire(context); // Mantenemos el dispositivo a la espera de que acabe de procesar todo el mensaje (para que no entre en modo de suspensión)
// SI TENEMOS ESTO PUESTO MUESTRA TOAST CADA VEZ QUE ENVIAMOS UNA NOTIFICACIÓN PUSH !!!!!:
//G_A.showToast(context, newMessage, Toast.LENGTH_SHORT); // Lo mostramos por pantalla
GWakeLocker.release(); // Liberamos para ahorrar energía (importante para optimizar los recursos de la batería)
} // onReceive()
};
/**
* Realiza las acciones pertinentes cuando se hace un callback de onDestroy desde la Actividad que llama al objeto GGCM.
*/
public void setOnDestroy() {
if (mRegisterTask != null) {
mRegisterTask.cancel(true); // Cancelamos la Tarea de registro
}
context.unregisterReceiver(mHandleMessageReceiver); // Desregistramos el manejador de mensajes ?????????????????? ESTO CREO QUE HAY QUE QUITARLO, SINO NO LLEGARÁN LOS MENSAJES EMERGENTES
GCMRegistrar.onDestroy(context); // Destruimos
} // setOnDestroy()
} // GGCM
GCommonUtilities.java
package com.appacoustic.android.g.gcm;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
/**
* @author AppAcoustiC <p>
* Utilidades comunes a todo el paquete. Las cargamos en el contructor de GGCM al hacer la llamada.
*/
public final class GCommonUtilities {
static String SERVER_URL; // Base URL del Servidor
static String SENDER_ID; // ID del proyecto en cuestión registrado para usar GCM
// Intentos usados para mostrar un mensaje en la pantalla:
static final String DISPLAY_MESSAGE_ACTION = "com.appacoustic.android.g.gcm.DISPLAY_MESSAGE"; // Nombre del paquete
static final String EXTRA_MESSAGE = "message"; // Extra
/**
* Notifica a la interfaz de usuario (UI) que tiene que mostrar un mensaje.<p>
* Este método está definido en el Helper común porque es usado por ambos: la interfaz de usuario y el Servicio.
* @param context Contexto de la actividad.
* @param message Mensaje a mostrar.
*/
static void displayMessage(Context context, String message) {
Intent intent = new Intent(DISPLAY_MESSAGE_ACTION); // Instanciamos el intento
intent.putExtra(EXTRA_MESSAGE, message); // Añadimos el mensaje que hemos metido como parámetro
context.sendBroadcast(intent); // Hace el envío asíncrono
} // displayMessage()
} // GCommonUtilities
GGCMBroadcastReceiver.java
package com.appacoustic.android.g.gcm;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import com.google.android.gcm.GCMBroadcastReceiver;
/**
* @author AppAcoustiC <p>
* Implementa el receptor de GCM.<p>
* De este modo irá al paquete donde tenemos nosotros nuestro GCMIntentService.
*/
public class GGCMBroadcastReceiver extends GCMBroadcastReceiver {
private final String tag = "GGCMBroadcastReceiver";
/**
* Devuelve el nombre de la clase donde tenemos implementado el servicio.
*/
@Override
protected String getGCMIntentServiceClassName(Context context) {
String s = GGCMIntentService.class.getName();
Log.d(tag, "Servicio: " + s);
return s;
} // getGCMIntentServiceClassName()
} // GGCMBroadcastReceiver
GServerUtilities.java
package com.appacoustic.android.g.gcm;
...
import com.appacoustic.android.g.R;
import com.google.android.gcm.GCMRegistrar;
/**
* @author AppAcoustiC <p>
* Utilidades de comunicación con nuestro Servidor (Planet Devices).
*/
public final class GServerUtilities {
private static final String TAG = "GServerUtilities";
private static final int MAX_ATTEMPTS = 5; // Nº máximo de intentos
private static final int BACKOFF_MILLI_SECONDS = 2000; // Tiempo para echarse atrás
private static final Random random = new Random(); // Objeto auxiliar para generar números aleatorios
/**
* Registra el dispositivo en nuestro Servidor.
* @param context Contexto de la Actividad.
* @param regId ID de registro.
* @param name Nombre del usuario.
* @param email Email del usuario.
* @return Si el registro ha sido correcto.
*/
static boolean register(final Context context, final String regId, String name, String email) {
Log.i(TAG, "Registrando dispositivo... (regId = " + regId + ")");
String serverUrl = SERVER_URL + "/register.php"; // Dirección donde tenemos el *.php que implementa el registro
// Parámetros:
Map<String, String> params = new HashMap<String, String>();
params.put("regId", regId); // ID de registro
params.put("name", name); // Nombre
params.put("email", email); // Email
long backoff = BACKOFF_MILLI_SECONDS + random.nextInt(1000); // Tiempo para echarse atrás (y un poco más cada vez)
// Una vez GCM devuelve el ID de registro, necesitamos registrar dicho ID en nuestro Servidor particular:
for (int i = 1; i <= MAX_ATTEMPTS; i++) { // Si el Servidor ha caído, lo volveremos a intentar alguna vez más
Log.d(TAG, "Intento de registro nº " + i + ".");
try {
displayMessage(context, context.getString(R.string.server_registering, i, MAX_ATTEMPTS)); // Mostramos por pantalla
post(serverUrl, params); // Hacemos el post con los parámetros hacia nuestro Servidor
GCMRegistrar.setRegisteredOnServer(context, true); // Indicamos que se registra
// Mostramos por pantalla que todo ha ido bien:
String message = context.getString(R.string.server_registered);
GCommonUtilities.displayMessage(context, message);
return true;
} catch (IOException e) {
// Aquí estamos simplificando el manejo de errores. En una aplicación real
// se debería de volver a procesar sólo los errores recuperables (como HTTP error code 503, e.g.):
Log.e(TAG, "Fallo tratando de registrarse. Nº de intento: " + i, e);
if (i == MAX_ATTEMPTS) {
break; // Si ya hemos gastado todos los intentos, paramos la aplicación
}
try {
Log.d(TAG, "Parando por " + backoff + " ms antes de volver a intentar.");
Thread.sleep(backoff); // Retardo
} catch (InterruptedException e1) {
Log.d(TAG, "Hilo interrumpido: Abortamos los restantes intentos.");
Thread.currentThread().interrupt(); // Actividad terminada antes de que la hayamos completado
return false;
}
backoff *= 2; // Incrementamos exponencialemente el tiempo de espera
}
}
// Si hemos llegado hasta aquí es porque hemos condumido todos los intentos.
// Mostramos que ha habido un error:
String message = context.getString(R.string.server_register_error, MAX_ATTEMPTS);
GCommonUtilities.displayMessage(context, message);
return false;
} // register()
/**
* Anula el registro del par "cuenta-dispositivo" en nuestro Servidor.
* @param context Contexto de la Actividad.
* @param regId ID de registro.
*/
static void unregister(final Context context, final String regId) {
Log.i(TAG, "Anulando el registro del dispositivo... (regId = " + regId + ")");
String serverUrl = SERVER_URL + "/unregister.php"; // Archivo *.php encargado de implementar el proceso
// Parámetros:
Map<String, String> params = new HashMap<String, String>();
params.put("regId", regId); // Sólo hace falta el ID de registro para eliminarlo
try {
post(serverUrl, params); // Hacemos el post con los parámetros hacia nuestro Servidor
GCMRegistrar.setRegisteredOnServer(context, false); // Indicamos que se desregistra
// Mostramos por pantalla que todo ha ido bien:
String message = context.getString(R.string.server_unregistered);
GCommonUtilities.displayMessage(context, message);
} catch (IOException e) {
// En este punto, el dispositivo está desregistrado de GCM, pero permanece registrado en nuestro Servidor de Planet Devices.
// Podríamos tratar de anular el registro de nuevo, pero no es necesario, ya que si el Servidor trata de enviar un mensaje al dispositivo,
// se generará un mensaje de error tipo "No registrado" y se debería de anular el registro del dispositivo.
// Mostramos que ha habido un error anulando el registro:
String message = context.getString(R.string.server_unregister_error, e.getMessage());
GCommonUtilities.displayMessage(context, message);
}
} // unregister()
/**
* Realiza un POST a nuestro Servidor.
* @param endpoint Dirección del POST.
* @param params Parámetros de la solicitud.
* @throws IOException
*/
private static void post(String endpoint, Map<String, String> params) throws IOException {
URL url; // Dirección del POST
try {
url = new URL(endpoint); // La inicializamos
} catch (MalformedURLException e) {
throw new IllegalArgumentException("URL incorrecta: " + endpoint); // La dirección no es correcta
}
// Creamos un StringBuilder para cargar el contenido del POST:
StringBuilder bodyBuilder = new StringBuilder();
Iterator<Entry<String, String>> iterator = params.entrySet().iterator();
// Construimos el cuerpo del POST usando los parámetros:
while (iterator.hasNext()) {
Entry<String, String> param = iterator.next();
bodyBuilder.append(param.getKey()).append('=').append(param.getValue());
if (iterator.hasNext()) {
bodyBuilder.append('&');
}
}
String body = bodyBuilder.toString(); // Pasamos a un único String todo el StringBuilder
Log.v(TAG, "Enviando '" + body + "' a " + url);
byte[] bytes = body.getBytes(); // Convertimos a bytes para que puedan viajar por la red mdiante un Stream
HttpURLConnection conn = null; // Conexión
try {
// Abrimos la conexión y la configuramos:
conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setUseCaches(false);
conn.setFixedLengthStreamingMode(bytes.length);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded;charset=UTF-8");
// Posteamos la solicitud:
OutputStream out = conn.getOutputStream(); // Instanciamos el flujo
out.write(bytes); // Enviamos los datos
out.close(); // Cerramos el Stream
// Manejamos la respuesta:
int status = conn.getResponseCode(); // Obtenemos el código de respuesta desde el Servidor (el 200 indica que todo ha ido bien)
if (status != 200) { // Si no es el código 200, es porque ha habido un error
throw new IOException("Envío fallido con error de código: " + status);
}
} finally {
if (conn != null) {
conn.disconnect(); // Al final desconectamos
}
}
} // post()
} // GServerUtilities
我编写了一个 Android 应用程序,它像这样调用该库:
Call in onCreate()
// Creamos nuestro objeto GCM:
gGCM = new GGCM(context,
Att.SERVER_URL,
Att.SENDER_ID,
Att.userName,
NotificationActivity.class);
//gGCM.registerDevice(); // Nos registramos directamente
//gGCM.unregisterDevice();
我有一个NotificationActivity,它是当您单击推送通知等时引发的事件...
最后我的 list 在这里:
AndroidMainfest.xml
...
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET"/>
<!-- GCM requiere de una cuenta Google -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<!-- Se activa cuando se recibe un mensaje -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<!-- Crea un permiso específico para este paquete. Sólo esta app puede recibir estos mensajes -->
<permission
android:name="com.planetdevices.android.loyalty.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.planetdevices.android.loyalty.permission.C2D_MESSAGE" />
<!-- Esta aplicación tiene permiso para registrarse y recibir mensajes de datos de Google -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<!-- Pemisos del estado de la red para detectar el status de Internet -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!-- Vibración -->
<uses-permission android:name="android.permission.VIBRATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="Splash"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/Splash" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="MainActivity" android:screenOrientation="portrait"></activity>
<activity android:name="NotificationActivity" android:screenOrientation="portrait"></activity>
...
<!-- Receptor -->
<receiver
android:name="com.appacoustic.android.g.gcm.GGCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.appacoustic.android.g.gcm" />
</intent-filter>
</receiver>
<!-- Servicio -->
<service android:name="com.appacoustic.android.g.gcm.GGCMIntentService" />
</application>
</manifest>
非常感谢您的帮助!
最佳答案
我更改了对 GGCMIntentService 中父类(super class)构造函数的调用。我已直接将 SENDER_ID 作为字符串及其值放入。我这样做是因为当我停止应用程序时,当调用该构造函数时,会抛出 nullPointerException,因为字符串“SENDER_ID”未初始化。
public GGCMIntentService() {
//super(SENDER_ID); // Llamamos a la superclase
super("<<<ProjectNumber>>>"); // NEW WAY
} // GGCMIntentService()
之后,出于类似的原因,我也直接在同一个类中的generateNotification()方法中启动Activity,如下所示:
Class<?> cls = null;
try {
cls = Class.forName("<<<packageName>>>.NotificationActivity");
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
我已将此实例放在下面几行中:
Intent notificationIntent = new Intent(context, cls);
这不是最好的解决方案,但它在任何时候都可以完美工作。 :-)
关于service - 应用程序停止时 Android GCM 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24995077/
我有一段代码看起来像这样: void update_clock(uint8_t *time_array) { time_t time = *((time_t *) &time_array[0]
应用程序崩溃了 :( 请帮助我.. 在这方面失败了。我找不到错误?该应用程序可以连接到 iTunesConnect 但它会出错。 谁能根据下面的崩溃报告判断问题出在哪里? share_with_app
小二是新来的实习生,作为技术 leader,我给他安排了一个非常简单的练手任务,把前端 markdown 编辑器里上传的图片保存到服务器端,结果他真的就把图片直接保存到了服务器上,这下可把我气坏了,就
我正在创建一个函数,它将目录路径作为参数传递,或者如果它留空,则提示用户输入。 我已经设置了我的 PATH_MAX=100 和 if 语句来检查 if ((strlen(folder path) +
我已将“arial.ttf”文件(从我的/Windows/Fonts 文件夹中获取)加载到内存中,但是将其传递到 FT_New_Memory_Face 时会崩溃(在 FT_Open_Face 中的某处
我正在尝试在我的计算机上的两个控制台之间进行 rtsp 流。 在控制台 1 上,我有: ffmpeg -rtbufsize 100M -re -f dshow -s 320x240 -i video=
我正在尝试使用 scio_beast在一个项目中。我知道它还没有完成,但这并不重要。我已经设法让它工作得很好。 我现在正在尝试连接到 CloudFlare 后面的服务器,我知道我需要 SNI 才能工作
我有一个带有关联宏的下拉列表,如下所示: Sub Drop() If Range("Hidden1!A1") = "1" Then Sheets("Sheet1").Se
我对 bash 很陌生。我要做的就是运行这个nvvp -vm /usr/lib64/jvm/jre-1.8.0/bin/java无需记住最后的路径。我认为 instafix 就是这样做...... n
我在 Windows 上使用 XAMPP 已经两年左右了,它运行完美,没有崩溃没有问题。 (直到四个月前。) 大约四个月前,我们将服务器/系统升级到了更快的规范。 这是旧规范的内容 - Windows
我面临着一个非常烦人的 android 崩溃,它发生在大约 1% 的 PRODUCTION session 中,应用程序始终在后台运行。 Fatal Exception: android.app.Re
尝试使用下面的函数: public void createObjectType() { try { mCloudDB.createObjectType(ObjectTypeIn
由于我正在进行的一个项目,我在 CF11 管理员中弄乱了类路径,我设法使服务器崩溃,以至于我唯一得到的是一个漂亮的蓝屏和 500 错误.我已经检查了日志,我会把我能做的贴在帖子的底部,但我希望有人会启
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 10 个月前关闭。 Improve
我最近从 xcode 3.x 更新到 4.2,当我在 4.2 中运行应用程序时,我遇到了核心数据问题。我还更新到了 iOS 5,所以问题可能就在那里,我不太确定。 这些应用程序在 3.x 中运行良好,
我是一个相对较新的 iPhone 应用程序开发人员,所以我的知识有点粗略,所以如果这是一个微不足道的问题,请原谅我。 我有一个导航应用程序,它通过在navigationController对象上调用p
if ([MFMailComposeViewController canSendMail]) { MFMailComposeViewController *mailViewController
你能帮我吗? 我正在设置 UILocalNotification,当我尝试设置其 userInfo 字典时,它崩溃了。 fetchedObjects 包含 88 个对象。 这是代码: NSDi
为什么我的代码中突然出现 NSFastEnumeration Mutation Handler 崩溃。我很茫然为什么会突然出现这个崩溃以及如何解决它。 最佳答案 崩溃错误: **** 由于未捕获的异常
当我从表中删除行时,我的应用程序崩溃了。这是我检测到错误和堆栈跟踪的来源。谢谢! //delete row from database - (void)tableView:(UITableView *
我是一名优秀的程序员,十分优秀!