我想快速更改屏幕上的一张图像。它在 htc 欲望 s 或 sumsung s1 上没有任何问题。但是在 s3 或大屏幕设备上安装应用程序时。图像变化缓慢,一段时间后强制关闭应用程序。错误是:“6354208 字节分配内存不足。”我更改了图像分辨率,效果更好,但错误无法修复,有时会发生。s3 中的已用内存为 35 mb!!!
float accelationSquareRoot = (x * x + y * y + z * z)
/ (SensorManager.GRAVITY_EARTH * SensorManager.GRAVITY_EARTH);
long actualTime = System.currentTimeMillis();
if (accelationSquareRoot >= 1.5) //
{
if (actualTime - lastUpdate < 30) {
return;
}
Random r=new Random();
randomWord+=r.nextInt(3);
randomWord%=4;
lastUpdate = actualTime;
isStarted=true;
// ((BitmapDrawable)shakedButton.getDrawable()).getBitmap().recycle();
switch (randomWord) {
case 0:
shakedButton.setImageResource(R.drawable.alef);
break;
case 1:
shakedButton.setImageResource(R.drawable.b);
break;
case 2:
shakedButton.setImageResource(R.drawable.jim);
break;
case 3:
shakedButton.setImageResource(R.drawable.dal);
break;
}
}