使用抛出OutofMemoryError的SharedPreferences加载listview

时间:2015-06-15 09:29:51

标签: android listview android-listview sharedpreferences

我在mainactivity中使用edittext和button,点击我想将文本添加到listview中,它正确地执行了。

我也使用sharedpreferences保存它,所以当我回到mainactivity或重新启动应用程序时,它会自动加载listview,但是在点击按钮时,我在这一行得到OutOfMemoryerror:

   arrayCars.add(new Car(pred.getString("Value["+i+"]", ""),"green",3455));

Listview代码:

       ArrayList<Car> arrayCars;
ListView listViewCars;
String venName;
SharedPreferences pred;
SharedPreferences.Editor spEditor;
static int count = 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main); 
    arrayCars=new ArrayList<Car>();

    System.out.println("count is"+count);
    pred = getSharedPreferences("place", Context.MODE_PRIVATE);
       spEditor = pred.edit();
       count = pred.getInt("countd",count);
        if(count > 0){
           for(int i = 0; i < count; i++){

               arrayCars.add(new Car(pred.getString("Value["+i+"]",  ""),"green",3455));


        count++;
           }
          }

      listViewCars = (ListView) findViewById(R.id.list_cars);
    ListCarsAdapter adapter = new ListCarsAdapter(this, arrayCars);
    listViewCars.setAdapter(adapter);
    listViewCars.setOnItemClickListener(this);



    try{
        Bundle bundle = getIntent().getExtras();
         venName = bundle.getString("r"); 
    }catch(Exception e){}

        if(venName!=null){
        spEditor.putString("Value["+count+"]", venName);
        spEditor.apply();
        arrayCars.add(new Car(pred.getString("Value["+count+"]", ""),"red",3444));
        count += 1;
        spEditor.putInt("countd", count);
        adapter.notifyDataSetChanged();
        }  

    }

PS:我正在使用自定义列表视图

2 个答案:

答案 0 :(得分:0)

删除count++;增加计数变量同时增加i,所以for循环永远不会停止

答案 1 :(得分:0)

count = pred.getInt("countd",count);
    if(count > 0){
       for(int i = 0; i < count; i++){

           arrayCars.add(new Car(pred.getString("Value["+i+"]",  ""),"green",3455));


    count++;
       }
    }

在上面的代码中,你每次增加1次,所以它永远不会结束循环将重复,直到它抛出异常。

避免删除count ++;

希望这会对你有所帮助。