【问题标题】:Memory Issues Android App内存问题 Android 应用程序
【发布时间】:2017-06-30 18:41:51
【问题描述】:

当我运行我的应用程序时,它会立即崩溃。我使用了 Android Monitor,看起来当应用程序启动时它使用的内存超过了分配的内存(下面有一个屏幕截图显示了这一点)。我只为计算机开发,所以我不担心内存,但似乎即使是两个中等大小的数组也将它推到了极限。

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    //input initialization
    final EditText numberInput = (EditText) findViewById(R.id.number_input);
    Button submit = (Button) findViewById(R.id.submit_button);
    Button zero = (Button) findViewById((R.id.resetButton));

    //progress bar initialization
    final ProgressBar progressBars[] = null;
    progressBars[0] = (ProgressBar)findViewById(R.id.progressBar0);
    progressBars[1] = (ProgressBar)findViewById(R.id.progressBar1);
    progressBars[2] = (ProgressBar)findViewById(R.id.progressBar2);
    progressBars[3] = (ProgressBar)findViewById(R.id.progressBar3);
    progressBars[4] = (ProgressBar)findViewById(R.id.progressBar4);
    progressBars[5] = (ProgressBar)findViewById(R.id.progressBar5);
    progressBars[6] = (ProgressBar)findViewById(R.id.progressBar6);
    progressBars[7] = (ProgressBar)findViewById(R.id.progressBar7);
    progressBars[8] = (ProgressBar)findViewById(R.id.progressBar8);
    progressBars[9] = (ProgressBar)findViewById(R.id.progressBar9);
    progressBars[10] = (ProgressBar)findViewById(R.id.progressBar10);
    progressBars[11] = (ProgressBar)findViewById(R.id.progressBar11);
    progressBars[12] = (ProgressBar)findViewById(R.id.progressBar12);
    progressBars[13] = (ProgressBar)findViewById(R.id.progressBar13);
    progressBars[14] = (ProgressBar)findViewById(R.id.progressBar14);
    progressBars[15] = (ProgressBar)findViewById(R.id.progressBar15);
    progressBars[16] = (ProgressBar)findViewById(R.id.progressBar16);
    progressBars[17] = (ProgressBar)findViewById(R.id.progressBar17);

    //variable value initialization
    final TextView textViews[] = null;
    textViews[0] = (TextView)findViewById(R.id.value0);
    textViews[1] = (TextView)findViewById(R.id.value1);
    textViews[2] = (TextView)findViewById(R.id.value2);
    textViews[3] = (TextView)findViewById(R.id.value3);
    textViews[4] = (TextView)findViewById(R.id.value4);
    textViews[5] = (TextView)findViewById(R.id.value5);
    textViews[6] = (TextView)findViewById(R.id.value6);
    textViews[7] = (TextView)findViewById(R.id.value7);
    textViews[8] = (TextView)findViewById(R.id.value8);
    textViews[9] = (TextView)findViewById(R.id.value9);
    textViews[10] = (TextView)findViewById(R.id.value10);
    textViews[11] = (TextView)findViewById(R.id.value11);
    textViews[12] = (TextView)findViewById(R.id.value12);
    textViews[13] = (TextView)findViewById(R.id.value13);
    textViews[14] = (TextView)findViewById(R.id.value14);
    textViews[15] = (TextView)findViewById(R.id.value15);
    textViews[16] = (TextView)findViewById(R.id.value16);
    textViews[17] = (TextView)findViewById(R.id.value17);

    submit.setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            //get string from input and convert it into an integer
            int numberInt = Integer.parseInt(numberInput.getText().toString());
            //set the values of the progress bars
            for(int i = 0; i < progressBars.length; i++)
            {
                progressBars[i].setProgress(numberInt);
            }
            //set the value of the variable display
            for (int i = 0; i < textViews.length; i++)
            {
                textViews[i].setText(numberInt);
            }
        }
    });

    zero.setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            //reset the progress bars to 0
            for(int i = 0; i < progressBars.length; i++)
            {
                progressBars[i].setProgress(0);
            }


            //reset the variable display to "~~~"
            for (int i = 0; i < textViews.length; i++)
            {
                textViews[i].setText("~~~");
            }
        }
    });
}

我已经尝试了帮助 > 编辑自定义 VM 选项...而不是解决问题导致 Android Studio 拒绝打开。我是 Java 新手,所以我错过了内存泄漏,是否有更有效的方法将项目存储在两个数组中,或者我只需要增加我的应用程序的内存?

【问题讨论】:

  • 你能从你的崩溃中附加 logcat 吗?
  • 很可能不是内存问题。检查 logcat 的真正原因。

标签: java android memory


【解决方案1】:

您需要了解更多关于基本 Java 结构的知识。

您没有为数组分配任何内存。 Java 不像 JavaScript - 它不会自动为您分配的数组元素分配空间。

final ProgressBar progressBars[] = null;
progressBars[0] = (ProgressBar)findViewById(R.id.progressBar0);

这个 sn-p 将失败,因为数组为空(它没有为任何元素分配空间)。当你尝试为它分配一个元素时,它会抛出一个NullPointerException。创建数组时必须分配空间:

final ProgressBar progressBars[] = new ProgressBar[18];
progressBars[0] = (ProgressBar)findViewById(R.id.progressBar0);

我的建议是先阅读一些 Java 教程。还应注意有关查看Logcat 的 cmets - 当您的应用程序崩溃时,它会(通常!)告诉您崩溃发生的确切位置以及原因。

【讨论】:

  • 感谢您的回答!我正在使用另一个网站的教程,它给了我progressBars[] = null,所以我不会再回到那个网站了。
猜你喜欢
  • 1970-01-01
  • 2018-06-21
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2012-11-29
  • 1970-01-01
  • 2012-01-06
  • 1970-01-01
相关资源
最近更新 更多