当我使用WeakReference时,无法解析android上的符号消息

时间:2017-10-26 01:58:29

标签: java android arraylist weak-references

我的应用相机预览记录应用。 我在记录相机预览期间使用ArrayList

在全局变量

上声明的

ArrayList

private ArrayList<OutputInputPair> pairs = new ArrayList<OutputInput>();

当我记录停止按钮时,执行stop()方法

@Override
public void stop() {
   pairs.clear();
   pairs = null;
   stopped = true;
}

所以,如果我继续录制没有点击录制停止按钮。 发生了很多内存泄漏。

enter image description here

所以,我想使用WeakReference 我试试这个

//private ArrayList<OutputInputPair> pairs = new ArrayList<OutputInputPair();
  private ArrayList<WeakReference<OutputInputPair>> pairs = new ArrayList<WeakReference<OutputInputPair>>();  //global variable

 @Override
 public void add(OutputInputPair pair) {
    //pairs.add(pair);
    pairs.add(new WeakReference<OutputInputPair>(pair));
 }

 @Override
 public void stop() {
    pairs.clear();
    pairs = null;
    stopped = true;
 }

 @Override
 public void process() {  //record method
    //for (OutputInputPair pair : pairs) {
    for (WeakReference<OutputInputPair> pair = pairs) {
        pair.output.fillCommandQueues(); //output is cannot resolve symbol message 
        pair.input.fillCommandQueues(); //input is cannot resolve symbol message
    }

    while (!stopped) { //when user click stop button, stopped = true.
        //for (OutputInputPair pair : pairs) {
         for (WeakReference<OutputInputPair> pair : pairs) {
             recording(pair); //start recording 
         }
     }
   }

public interface IOutputRaw  {   //IInputRaw class same code.
    void fillCommandQueues(); 
}

我认为如何避免记忆瑞克,使用WeakReference是对的?

如何修复无法解析符号消息使用弱引用?

感谢。

public class OutputInputPair {
    public IOutputRaw output;
    public IInputRaw input;

     public OutputInputPair(IOutputRaw output, IInputRaw input) {
         this.output = output;
         this.input = input;
     }
 }

1 个答案:

答案 0 :(得分:2)

我对WeakReference的了解不多。但是你应该使用get()方法来获得实际参考。

使用:

if(pair == null) continue;
OutputInputPair actualPair = pair.get();
if(actualPair == null) continue;
actualPair.output.fillCommandQueues();
actualPair.input.fillCommandQueues();

而不是:

pair.output.fillCommandQueues();
pair.input.fillCommandQueues();