java.lang.OutOfMemoryError.Android的

use*_*929 0 java performance android memory-management

我在开发我的应用程序时并没有太远,我得到了一个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
Run Code Online (Sandbox Code Playgroud)

我正在尝试制作一个列表,无论何时我检索数据以使列表出现错误.

这是扩展列表片段的类

`

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)
}
}
Run Code Online (Sandbox Code Playgroud)

这是保存数据的类

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;
}

}
Run Code Online (Sandbox Code Playgroud)

请帮忙.这是我在大学的最后一个项目,我没有太多时间.谢谢.

`

ekc*_*ang 5

你的for循环有一个拼写错误: for (int i = 0; 1 < 100; i ++)

应该是i < 100.它的内存不足,因为1总是小于100.