构造函数通知已被弃用。

21

我对安卓应用程序开发非常陌生。在许多教程的帮助下,我使用了webview、actionbar和GCM创建了一个应用程序。一切都正常。但是我收到了一个警告:“notification构造函数已被弃用”。我查看了notification.builder,但是我无法使用新的notification builder修改我的代码。有人能帮我吗......

public class GCMIntentService extends GCMBaseIntentService {

private static final String TAG = "GCMIntentService";

public GCMIntentService() {
    super(SENDER_ID);
}

/**
 * Method called on device registered
 **/
@Override
protected void onRegistered(Context context, String registrationId) {
    Log.i(TAG, "Device registered: regId = " + registrationId);
    displayMessage(context, "Your device registred with GCM");
    Log.d("NAME"," "+ MainActivity.name);
    ServerUtilities.register(context, MainActivity.name, MainActivity.email, MainActivity.AndroidVersion, MainActivity.AndroidID, MainActivity.manufacturer, MainActivity.model, registrationId);
}

/**
 * Method called on device un registred
 * */
@Override
protected void onUnregistered(Context context, String registrationId) {
    Log.i(TAG, "Device unregistered");
    displayMessage(context, getString(R.string.gcm_unregistered));
    ServerUtilities.unregister(context, registrationId);
}

/**
 * Method called on Receiving a new message
 * */
@Override
protected void onMessage(Context context, Intent intent) {
    Log.i(TAG, "Received message");
    String message = intent.getExtras().getString("price");

    displayMessage(context, message);
    // notifies user
    generateNotification(context, message);
}

/**
 * Method called on receiving a deleted message
 * */
@Override
protected void onDeletedMessages(Context context, int total) {
    Log.i(TAG, "Received deleted messages notification");
    String message = getString(R.string.gcm_deleted, total);
    displayMessage(context, message);
    // notifies user
    generateNotification(context, message);
}

/**
 * Method called on Error
 * */
@Override
public void onError(Context context, String errorId) {
    Log.i(TAG, "Received error: " + errorId);
    displayMessage(context, getString(R.string.gcm_error, errorId));
}

@Override
protected boolean onRecoverableError(Context context, String errorId) {
    // log message
    Log.i(TAG, "Received recoverable error: " + errorId);
    displayMessage(context, getString(R.string.gcm_recoverable_error,
            errorId));
    return super.onRecoverableError(context, errorId);
}

/**
 * Issues a notification to inform the user that server has sent a message.
 */
private static void generateNotification(Context context, String message) {
    int icon = R.drawable.ic_launcher;
    long when = System.currentTimeMillis();
    NotificationManager notificationManager = (NotificationManager)
            context.getSystemService(Context.NOTIFICATION_SERVICE);
    Notification notification = new Notification(icon, message, when);

    String title = context.getString(R.string.app_name);

    Intent notificationIntent = new Intent(context, MainActivity.class);
    // set intent so it does not start a new activity
    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;

    // Play default notification sound
    notification.defaults |= Notification.DEFAULT_SOUND;

    //notification.sound = Uri.parse("android.resource://" + context.getPackageName() + "your_sound_file_name.mp3");

    // Vibrate if vibrate is enabled
    notification.defaults |= Notification.DEFAULT_VIBRATE;
    notificationManager.notify(0, notification);      

}

}

**将Manifest中的sdkversion从8改为18。

3个回答

39
您正在尝试使用已自API 11起不再受支持且不应使用的Notification构造函数。请改用Notification.Builder。https://developer.android.com/reference/android/app/Notification.Builder.html
 Notification noti = new Notification.Builder(mContext)
     .setContentTitle("New mail from " + sender.toString())
     .setContentText(subject)
     .setSmallIcon(R.drawable.new_mail)
     .setLargeIcon(aBitmap)
     .setContentIntent(yourPendingIntent)
     .build();

您目前拥有以下物品:

Notification notification = new Notification(icon, message, when);

这个构造函数已经被弃用,建议使用Notification.Builder来代替,示例如下:

Notification notification = new Notification.Builder(context)
    .setContentText(message)
    .setSmallIcon(icon)
    .setWhen(when)
    .build();

我搞不明白。 - user2757801
我已经更新了我的答案,并提供了一个示例,应该适用于你的代码。 - Antman06
6
如果我需要支持Android 2.2,我应该使用哪种解决方案? - newton_guima
Newton,你需要检查操作系统版本并相应地执行调用。类似这样的代码:if (currentapiVersion <= android.os.Build.VERSION_CODES.FROYO){ Notification notification = new Notification(icon, message, when); } else{ Notification notification = new Notification.Builder(context) .setContentText(message) .setSmallIcon(icon) .setWhen(when) .build(); } - Antman06
我已经找到了。问题是它是一个完全不同的协议,而我的解决方案来自教程;我自己是从iOS世界转来的Android新手。所以我不知道如何转换我的代码,可能不会破坏客户端和php支持。你知道有没有使用它的教程?我的旧代码在这里:http://stackoverflow.com/questions/25930533/replacing-gcmbaseintentservice-for-remote-notifications-while-switching-to-andro - Fabrizio Bartolomucci
显示剩余5条评论

1

关于原始问题,如果您的系统支持GCMBaseIntentService,那么这个类可以正常工作:

package ...;

import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.util.Log;

import com.google.android.gcm.GCMBaseIntentService;

import static com.example.taxiprofessional.CommonUtilities.SENDER_ID;
import static com.example.taxiprofessional.CommonUtilities.displayMessage;

public class GCMIntentService extends GCMBaseIntentService {

    private static final String TAG = "GCMIntentService";

 public GCMIntentService() {
     super(SENDER_ID);
 }

 /**
  * Method called on device registered
  **/
 @Override
 protected void onRegistered(Context context, String registrationId) {
     Log.i(TAG, "Device registered: regId = " + registrationId);
     displayMessage(context, "Your device registred with GCM");
     AccountInformation info=AccountInformation.sharedInstance();
     ServerUtilities.register(context, info.email, info.password, registrationId);
 }

 /**
  * Method called on device un registred
  * */
 @Override
 protected void onUnregistered(Context context, String registrationId) {
     Log.i(TAG, "Device unregistered");
     displayMessage(context, getString(R.string.gcm_unregistered));
     ServerUtilities.unregister(context, registrationId);
 }

 /**
  * Method called on Receiving a new message
  * */
 @Override
 protected void onMessage(Context context, Intent intent) {
     Log.i(TAG, "Received message");
     String message = intent.getExtras().getString("price");

     displayMessage(context, message);
     // notifies user
     generateNotification(context, message);
 }

 /**
  * Method called on receiving a deleted message
  * */
 @Override
 protected void onDeletedMessages(Context context, int total) {
     Log.i(TAG, "Received deleted messages notification");
     String message = getString(R.string.gcm_deleted, total);
     displayMessage(context, message);
     // notifies user
     generateNotification(context, message);
 }

 /**
  * Method called on Error
  * */
 @Override
 public void onError(Context context, String errorId) {
     Log.i(TAG, "Received error: " + errorId);
     displayMessage(context, getString(R.string.gcm_error, errorId));
 }

 @Override
 protected boolean onRecoverableError(Context context, String errorId) {
     // log message
     Log.i(TAG, "Received recoverable error: " + errorId);
     displayMessage(context, getString(R.string.gcm_recoverable_error,
             errorId));
     return super.onRecoverableError(context, errorId);
 }

 /**
  * Issues a notification to inform the user that server has sent a message.
  */
 private static void generateNotification(Context context, String message) {
     int icon = R.drawable.taxi_profi;
     long when = System.currentTimeMillis();
     NotificationManager notificationManager = (NotificationManager)
             context.getSystemService(Context.NOTIFICATION_SERVICE);
     Notification notification = new Notification(icon, message, when);

     String title = context.getString(R.string.app_name);

     Intent notificationIntent = new Intent(context, Dashboard.class);
     // set intent so it does not start a new activity
     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;

     // Play default notification sound
     notification.defaults |= Notification.DEFAULT_SOUND;

     // Vibrate if vibrate is enabled
     notification.defaults |= Notification.DEFAULT_VIBRATE;
     notificationManager.notify(0, notification);      

 }

}

-1

尝试这个教程......http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/ - Indra Kumar S
我猜这个回答本可以作为评论而不是答案条目,因为它并没有提供解决方案,而是在问问题。 - Jaime Montoya

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接