大家好我已经实现了通知功能。 我的通知ID有问题。
这是我的代码:
protected void ShowNotification(String title, String text){
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(getBaseContext())
.setSmallIcon(R.drawable.atterrato)
.setContentTitle(title)
.setContentText(text)
.setDefaults(Notification.DEFAULT_ALL) // requires VIBRATE permission
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(text));
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, mBuilder.build());
Uri alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
mBuilder.setSound(alarmSound);
mBuilder.build();
}
我不想替换通知。
我想增加0,但我不知道如何解决这个问题。 如果我声明一个变量,我破坏活动不起作用...... 有没有一种简单的方法可以解决这个问题?
使用getSharedPreference?
谢谢
答案 0 :(得分:1)
如果您计划不断增加数字,最好的选择是使用SharedPreferences
。
首先,您需要对其进行初始化:
private void sharedPrefsInit()
{
SharedPreferences sharedPrefs = getSharedPreferences("Number", 0);
// This if statement checks if the number has been accessed before
if(sharedPrefs.getInt("MyNum", -1) == -1)
{
// If it hasn't, create it
SharedPreferences.Editor editor = sharedPrefs.edit();
editor.putInt("MyNum", 0);
editor.commit();
}
}
如果您将上述方法放在onCreate()
中,则可以保证您正在访问正确的内容。现在,您需要创建一个小方法,为您增加数量,并且您已完成所有设置。它可能看起来像这样。
private int incMyNum()
{
int newNum;
SharedPreferences sharedPrefs = getSharedPreferences("Number", 0);
newNum = sharedPrefs.getInt("MyNum", -1);
SharedPreferences.Editor editor = sharedPrefs.edit();
editor.putInt("MyNum", ++newNum);
editor.commit();
return newNum;
}
现在您的showNotification()
方法可以拥有此
notificationManager.notify(incMyNum(), mBuilder.build());