android代码片段

	// 从Assets中读取图片
	bgimg0 = getImageFromAssetsFile("Cat_Blink/cat_blink0000.png");
	private Bitmap getImageFromAssetsFile(String fileName) {
		Bitmap image = null;
		AssetManager am = getResources().getAssets();
		try {
			InputStream is = am.open(fileName);
			image = BitmapFactory.decodeStream(is);
			is.close();
		} catch (IOException e) {
			e.printStackTrace();
		}
		return image;
	}



你可能感兴趣的:(android代码片段)