-
自定义字符串标签
在values下面创建文件,values/speed_strings.xml<?xml version="1.0" encoding="utf-8"?>
<resources>
<item name="txt_1" type="speed_string">http://speed_string.com</item>
</resources>
代码中使用Log.d("", getResources().getString(R.urls.myUrl));
-
读取assets文件下图片
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 (Exception e) { e.printStackTrace(); } return image; } //图片过大时可能会内存溢出,使用BitmapFactory.Options BitmapFactory.Options options = new BitmapFactory.Options(); options.inJustDecodeBounds = true; //读取图片的轮廓 Bitmap bmp = BitmapFactory.decodeFile(path, options);/* 这里返回的bmp是null */ options.inSampleSize = options.outWidth / 200; //图片长宽方向缩小倍数 Bitmap bmp = BitmapFactory.decodeFile(path, options); options.inDither=false; //不进行图片抖动处理 options.inPreferredConfig=null; //设置让解码器以最佳方式解码 //下面两个字段需要组合使用 options.inPurgeable = true; options.inInputShareable = true;
游戏SDK开发_总结
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- View 自定义View中在onDraw()方法中可以设置padding吗?答案是不能,设置padding后,Vi...
- 一直以来Bitmap都是开发中很棘手的问题,这个问题就是传说中的OOM(java.lang.OutofMemory...