我在开发我的应用程序上并不太忙,并且遇到了java.lang.OutOfMemoryError。这是logcat:
02-24 14:02:54.957: E/art(28628): Throwing OutOfMemoryError "Failed to allocate a 28 byte allocation with 8 free bytes and 8B until OOM" (recursive case)
02-24 14:02:54.965: E/art(28628): "FinalizerDaemon" daemon prio=5 tid=8 Runnable
02-24 14:02:54.965: E/art(28628): | group="system" sCount=0 dsCount=0 obj=0x12c260e0 self=0xac4a5400
02-24 14:02:54.965: E/art(28628): | sysTid=28641 nice=0 cgrp=apps sched=0/0 handle=0xac4b9b00
02-24 14:02:54.965: E/art(28628): | state=R schedstat=( 2442370612 111306164 635 ) utm=229 stm=15 core=1 HZ=100
02-24 14:02:54.965: E/art(28628): | stack=0xb40fe000-0xb4100000 stackSize=1036KB
02-24 14:02:54.965: E/art(28628): | held mutexes= "mutator lock"(shared held)
02-24 14:02:54.965: E/art(28628): at com.android.internal.os.BinderInternal$GcWatcher.finalize(BinderInternal.java:51)
02-24 14:02:54.965: E/art(28628): at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:190)
02-24 14:02:54.965: E/art(28628): at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:173)
02-24 14:02:54.965: E/art(28628): at java.lang.Thread.run(Thread.java:818)
02-24 14:02:54.965: E/System(28628): Uncaught exception thrown by finalizer
我正在尝试创建一个列表,并且每当我检索数据以创建列表时,都会收到错误消息。
这是扩展列表片段的类
`
public class BillReminderListFragment extends ListFragment {
private ArrayList<Bill> mBills;
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
mBills = BillLab.get(getActivity()).getBills(); <---(this is what is causing the error)
}
}
这是保存数据的类
public class BillLab {
private ArrayList<Bill> mBills;
private static BillLab sBillLab;
private Context mAppBillContext;
private BillLab(Context appBillContext){
mAppBillContext = appBillContext;
mBills = new ArrayList<Bill>();
for (int i = 0; 1 < 100; i ++){
Bill b = new Bill();
b.setTitle("Bill #" + i);
b.setDate(new Date());
mBills.add(b);
}
}
public static BillLab get(Context c){
if (sBillLab == null){
sBillLab = new BillLab(c.getApplicationContext());
}
return sBillLab;
}
public Bill getBill(UUID id){
for (Bill b: mBills) {
if (b.getId().equals(id))
return b;
}
return null;
}
public ArrayList<Bill> getBills(){
return mBills;
}
}
请帮忙。这是我在大学里的最后一个项目,我没有太多时间。
谢谢。
`
最佳答案
更改以下行
for (int i = 0; 1 < 100; i ++){
至
for (int i = 0; i < 100; i ++){
关于java - java.lang.OutOfMemoryError。安卓系统,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28689500/