破坏应用程序解决了!感谢帮助! 此时活动已销毁,但状态图标仍显示在状态栏上。您可以在应用关闭的同时帮我删除图标吗?我怀疑onDestroy部分问题...
我有一个带状态栏图标的简单应用。当Activity启动并且用户按下onPause()时,状态栏图标为apper。点击此图标恢复应用程序,但当我想要销毁活动时,我遇到了错误。有人可以帮助mi吗?
private static final int NOTIF_ID = 1;
@Override
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("test")
.setWhen(System.currentTimeMillis())
.setAutoCancel(false)
.setContentTitle("title")
.setContentInfo("cinfo")
.setContentText("ctext");
Notification n = builder.build();
n.flags = Notification.FLAG_ONGOING_EVENT;
NotificationManager nm = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
nm.notify(NOTIF_ID, n);
}
public void onDestroy() {
try {
mp.release();
if (isFinishing()) {
notificationManager.cancel(NOTIF_ID);
}
} catch (Exception e) {
}
super.onDestroy();
}
答案 0 :(得分:0)
方法中有NullPointerException
:
public void onDestroy() {
mp.release();
if (isFinishing()) {
notificationManager.cancel(NOTIF_ID);
}
super.onDestroy();
}
在您调用mp.release();
之前验证其不是null
我会这样写:
public void onDestroy() {
if(mp != null){
mp.release();
}
if (isFinishing()) {
notificationManager.cancel(NOTIF_ID);
}
super.onDestroy();
}
然而,同样的验证也可以放在notificationManager
上。
答案 1 :(得分:0)
在这种情况下,必须调用super.onDestroy来销毁活动,因为它是android生命周期的一部分。
所以你可以将你的代码放在try / catch中,它会起作用。
public void onDestroy() {
try {
mp.release();
if (isFinishing()) {
notificationManager.cancel(NOTIF_ID);
}
} catch (Exception e) {
}
super.onDestroy();
}