我有这个应用程序的问题:
https://play.google.com/store/apps/details?id=org.me.gp.project.holidays.countdown
我有这份报告。在我朋友的手机和模拟器上一切正常。下面是有问题的报告和班级。它是一个负责 4x2 小部件的类。
public class CountdownService extends Service {
public static final String UPDATE = "update";
public static final String PLUS = "plus";
public static final String MINUS = "minus";
public static final long MODIFY= 86400000;
Bitmap bla[]=null;
private static final int kDigitsViewIds[] = {
R.id.bmp0,
R.id.bmp1,
};
@Override
public void onStart(Intent intent, int startId) {
if (bla==null){
getDigits();
}
String command = intent.getAction();
int appWidgetId = intent.getExtras().getInt(
AppWidgetManager.EXTRA_APPWIDGET_ID);
RemoteViews remoteView = new RemoteViews(getApplicationContext()
.getPackageName(), R.layout.countdownwidget);
AppWidgetManager appWidgetManager = AppWidgetManager
.getInstance(getApplicationContext());
SharedPreferences prefs = getApplicationContext().getSharedPreferences(
"prefs", 0);
int year = prefs.getInt("year", 0);
int month =prefs.getInt("month", 0);
int day = prefs.getInt("day", 0);
//plus button pressed
TimeZone tz = TimeZone.getTimeZone("GMT+1:00");
Date date1 = new Date();
//Calendar calendar = new GregorianCalendar(2012, 05, 8, 18 );
Calendar calendar = new GregorianCalendar(year, month, day);
calendar.setTimeZone(tz);
long timme = calendar.getTimeInMillis() - date1.getTime();
int d = (int) ((timme / 1000) / (3600*24));
Bitmap[] bla = getDigits();
String days=String.format("%02d", d);
String time = days;
char[] digits = time.toCharArray();
for (int i = 0; i <= 1; i++) {
char c =digits[i];
int a=Character.getNumericValue(c);
remoteView.setImageViewBitmap(kDigitsViewIds[i], bla[a]);
}
// apply changes to widget
appWidgetManager.updateAppWidget(appWidgetId, remoteView);
super.onStart(intent, startId);
}
public Bitmap[] getDigits(){
if (bla == null){
bla = prepareDigits();
}
return bla;
}
@Override
public IBinder onBind(Intent arg0) {
return null;
}
private Bitmap[] prepareDigits() {
int index = 10;
Bitmap[] bla = new Bitmap[index];
for (int i = 0; i < index; i++) {
bla[1] =(Bitmap) BitmapFactory.decodeResource(getResources(), R.drawable.digit1);
bla[2] =(Bitmap) BitmapFactory.decodeResource(getResources(), R.drawable.digit2);
bla[3] =(Bitmap) BitmapFactory.decodeResource(getResources(), R.drawable.digit3);
bla[4] =(Bitmap) BitmapFactory.decodeResource(getResources(), R.drawable.digit4);
bla[5] =(Bitmap) BitmapFactory.decodeResource(getResources(), R.drawable.digit5);
bla[6] =(Bitmap) BitmapFactory.decodeResource(getResources(), R.drawable.digit6);
bla[7] =(Bitmap) BitmapFactory.decodeResource(getResources(), R.drawable.digit7);
bla[8] =(Bitmap) BitmapFactory.decodeResource(getResources(), R.drawable.digit8);
bla[9] =(Bitmap) BitmapFactory.decodeResource(getResources(), R.drawable.digit9);
bla[0] =(Bitmap) BitmapFactory.decodeResource(getResources(), R.drawable.digit0);
}
return bla;
}
}
和报告:
java.lang.RuntimeException: Unable to start service
org.me.gp.project.holidays.countdown.CountdownService@40520768 with Intent { act=update
dat=countdownwidget://widget/id/26#update26 flg=0x4
cmp=org.me.gp.project.holidays.countdown/.CountdownService (has extras) }:
java.lang.ArrayIndexOutOfBoundsException
Caused by: java.lang.ArrayIndexOutOfBoundsException
at org.me.gp.project.holidays.countdown.CountdownService.onStart
(CountdownService.java:72)
at android.app.Service.onStartCommand(Service.java:428)
at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:2115)
我现在出了什么问题,在这
int year = prefs.getInt("year", 0);
int month =prefs.getInt("month", 0);
int day = prefs.getInt("day", 0);
我的默认值为 0,数据为 0.0.0。