不同的android版bug

时间:2013-10-06 14:33:19

标签: android android-layout android-intent android-emulator android-version

我有一个带状态栏图标的简单应用程序。当用户最小化应用时,会出现状态栏图标。当用户单击该图标时,应该恢复应用并继续工作。我已经在Android 2.3.4上测试过它但是在4.0安卓版本我的应用程序没有恢复并继续工作但是打开我的应用程序的新版本。如何制作通用的noticifaction代码而不用担心android版本?

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_jajko);

    text = (TextView) findViewById(R.id.tvTime);
    play = (Button) findViewById(R.id.butStart);
    miekko = (Button) findViewById(R.id.butMiekko);
    srednio = (Button) findViewById(R.id.butSrednio);
    twardo = (Button) findViewById(R.id.butTwardo);

    miekko.setOnClickListener(this);
    srednio.setOnClickListener(this);
    twardo.setOnClickListener(this);
    play.setOnClickListener(this);

    mp = MediaPlayer.create(Jajko.this, R.raw.alarm);

    showNotification(this);

}

public static void showNotification(Context context) {
    final Intent result_intent = new Intent(context, Jajko.class);

    result_intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
            | Intent.FLAG_ACTIVITY_SINGLE_TOP);

    TaskStackBuilder stack_builder = TaskStackBuilder.create(context);
    stack_builder.addParentStack(Jajko.class);
    stack_builder.addNextIntent(result_intent);

    PendingIntent pending_intent = stack_builder.getPendingIntent(0,
            PendingIntent.FLAG_UPDATE_CURRENT);

    android.support.v4.app.NotificationCompat.Builder builder = new android.support.v4.app.NotificationCompat.Builder(
            context);

    Resources res = context.getResources();
    builder.setContentIntent(pending_intent)
            .setSmallIcon(R.drawable.icon)
            .setLargeIcon(
                    BitmapFactory.decodeResource(res, R.drawable.icon))
            .setTicker("Egg Timer").setWhen(System.currentTimeMillis())
            .setAutoCancel(false).setContentTitle("Egg Timer")
            .setContentInfo("").setContentText("");
    Notification n = builder.build();
    n.flags = Notification.FLAG_ONGOING_EVENT;

    notificationManager = (NotificationManager) context
            .getSystemService(Context.NOTIFICATION_SERVICE);
    notificationManager.notify(NOTIF_ID, n);
}

1 个答案:

答案 0 :(得分:0)

documentation for TaskStackBuilder表示它在3.0之前和之后的Android上表现不同。我没有用它作为未决意图,所以我不确定该怎么想。

尝试使用堆栈构建器完全删除这三行,并将待处理的意图行更改为:

PendingIntent pending_intent = PendingIntent.getActivity(getBaseContext(), 
    0, result_intent, PendingIntent.FLAG_UPDATE_CURRENT);