当我运行我的程序时,我不断收到一个类转换异常错误,我不完全确定为什么。
错误
02-18 14:31:27.585: ERROR/AndroidRuntime(325): FATAL EXCEPTION: main
02-18 14:31:27.585: ERROR/AndroidRuntime(325): java.lang.RuntimeException: Unable to start receiver com.app.notifyme.SmsReciever: java.lang.ClassCastException: java.lang.String
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at android.app.ActivityThread.handleReceiver(ActivityThread.java:2821)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at android.app.ActivityThread.access$3200(ActivityThread.java:125)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2083)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at android.os.Handler.dispatchMessage(Handler.java:99)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at android.os.Looper.loop(Looper.java:123)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at android.app.ActivityThread.main(ActivityThread.java:4627)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at java.lang.reflect.Method.invokeNative(Native Method)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at java.lang.reflect.Method.invoke(Method.java:521)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at dalvik.system.NativeStart.main(Native Method)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): Caused by: java.lang.ClassCastException: java.lang.String
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at android.app.ContextImpl$SharedPreferencesImpl.getInt(ContextImpl.java:2706)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at com.app.notifyme.SmsReciever.onReceive(SmsReciever.java:45)
02-18 14:31:27.585: ERROR/AndroidRuntime(325): at android.app.ActivityThread.handleReceiver(ActivityThread.java:2810)
现在,如果我没看错,就是说错误位于 SmsReciever 的第 45 行,这将使其成为问题区域。
SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(context);
unread = pref.getInt(SmsPrefs.COUNT, 0);
我已经定义了一切
private int unread = 0;
//in preference class
public static final String COUNT = "";
我只是想用这个变量来保持计数。有人在这里指导我,因为我真的没有看到问题。
更新* **
代码是怎样的
public class SmsReciever extends BroadcastReceiver {
static final String ACTION = "android.provider.Telephony.SMS_RECEIVED";
NotificationManager notifyManag;
String mLast = new String();
private int unread = 0;
@Override
public void onReceive(Context arg0, Intent arg1) {
boolean smsOn = false;
String smsColor = new String ("Green");
Uri smsSound;
String smsVibrate = new String ("Normal");
SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(arg0);
smsOn = pref.getBoolean("PREF_SMS_ON", false);
smsColor = pref.getString("SMS_PREF_COLOR", "Green");
smsSound = Uri.parse(pref.getString("SMS_PREF_SOUND", "Silent"));
smsVibrate = pref.getString("SMS_PREF_SOUND", "Normal");
unread = pref.getInt(SmsPrefs.COUNT, 0);
mLast = pref.getString(SmsPrefs.LAST, "");
NotificationManager mNotificationManager = (NotificationManager) arg0.getSystemService(Context.NOTIFICATION_SERVICE);
if (arg1.getAction().equals(ACTION) && smsOn == true){
String from = new String();
String body = new String();
Bundle bundle = arg1.getExtras();
if (bundle != null) {
Object[] pdus = (Object[]) bundle.get("pdus");
for (Object pdu : pdus){
SmsMessage messages = SmsMessage.createFromPdu((byte[]) pdu);
from = messages.getDisplayOriginatingAddress();
body= messages.getDisplayMessageBody();
}// end for
}//end if
int icon = 0;
CharSequence tickerText = null;
long when = 0;
SharedPreferences.Editor editor = pref.edit();
icon = icon(icon);
tickerText = from + ": " + body;
when = System.currentTimeMillis();
CharSequence contentText = "";
CharSequence contentTitle = "";
/*
if no notifications do normal
else if notified >= 1 and last message is from same person display name and how many messages
else if(notified >=1 and last message is from different display new message and how many
*/
if(unread == 0){
contentTitle = from;
contentText = body.toString();
unread = 1;
editor.putInt(SmsPrefs.COUNT, unread);
editor.commit();
}else if(unread >= 1 && mLast.equals(from)){
contentTitle = from;
contentText = unread + " unread messages";
unread++;
editor.putInt(SmsPrefs.COUNT, unread);
editor.commit();
}else if(unread >= 1 && !mLast.equals(from)){
contentTitle = "New Messages";
contentText = unread + " unread messages";
unread++;
editor.putInt(SmsPrefs.COUNT, unread);
editor.commit();
}
mLast = from;
editor.putString(SmsPrefs.LAST, mLast);
editor.commit();
并且在我之前显示的定义的偏好活动中,还尝试在字符串中放入一些东西,但结果仍然相同