我对此应用有疑问:
https://play.google.com/store/apps/details?id=org.me.gp.project.holidays.countdown
我有这个raport。在我,朋友的电话和模拟器上一切都很好。下面的raport和类有问题。它是一个负责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;
}
}
和raport:
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。
答案 0 :(得分:0)
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;
}
}
这对我很有意思。你正在创建一个大小为10的Bitmap数组,然后循环10次,并添加10个drawable,这是正确的吗?或者至少,您可以不使用循环并保留bla[1] = ...
行。另一个奇怪的是你开始在数组索引1处添加元素,而不是0。
Bitmap[] bla = new Bitmap[index];
bla[0] = ((BitmapDrawable)getResources().getDrawable(R.drawable.digit0)).getBitmap();
bla[1] = ((BitmapDrawable)getResources().getDrawable(R.drawable.digit1)).getBitmap();
bla[2] = ((BitmapDrawable)getResources().getDrawable(R.drawable.digit2)).getBitmap();
// etc
我个人认为你应该使用List<Bitmap>
。数组是5年前的。