我的应用程序一直存在很多内存问题。我正在尝试捕获内存异常,然后使用 toast 显示内存不足的消息。
当我使用口味代码运行应用程序时,它会崩溃。当我在调试器中运行它时,不会崩溃,但不会出现任何消息。
我试图在 Activty 类的 onCreate 方法内的捕获内存异常中显示消息。
代码块:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// set size of card image
ImageView CardImage = ( ImageView)findViewById(R.id.viewcard);
int ScreenWidth=getWindowManager().getDefaultDisplay().getWidth();
int ScreenHeight=getWindowManager().getDefaultDisplay().getHeight();
// fix for tblets
if (ScreenHeight<ScreenWidth)
ScreenWidth=ScreenHeight;
int CardWidth=ScreenWidth/2;
CardWidth+=CardWidth/10;
// set bitmap
// Bitmap bmp=BitmapFactory.decodeResource(getResources(), R.drawable.card2);
String FileName=new String("card");
FileName+=Integer.toString( CardId+1);
FileName+=".jpg";
// put in text that matches card
TextView mCardText = (TextView)findViewById(R.id.cardtext);
mCardText.setText( "Card Meaning \n"+ cCardText.mCardMeaning[ CardId]);
// put in text that matches card
TextView mHouseText = (TextView)findViewById(R.id.housetext);
mHouseText.setText( "House Meaning \n"+ cCardText.mHouseMeaning[ HouseId-1]);
try {
AssetManager assetManager= getAssets();
InputStream inputStream;
inputStream=assetManager.open(FileName);
Bitmap icon=BitmapFactory.decodeStream(inputStream);
CardImage.setImageBitmap(icon);
} catch( OutOfMemoryError e)
{
/////////////////////////////////////////////////////////////////////
// crashes heare
Context context = getApplicationContext();
CharSequence text = "Out of Memory ";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
gi++;
return;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return;
}
//scale it
// note: only code here that pertains to card image, becouse if card image cannot be loaded
// the above exceptions will go off and we will never get here
CardImage.getLayoutParams().width=CardWidth;
CardImage.getLayoutParams().height = (int)( (float) CardWidth *1.7);
}