当前位置: 编程技术>移动开发
本页文章导读:
▪资源图片跟BItmap、Drawable互转 资源图片和BItmap、Drawable互转
//Bitmap 转 Drawable
BitmapDrawable bd = new BitmapDrawable(bitmap);
//Drawable 转 Bitmap
Drawable db = XX;
BitmapDrawable bd = new (BitmapDrawable)db;
Bitmap bmp = bd.getBitmap();
//资源图片 转 Drawabl.........
▪ 获取手机荧屏尺寸 获取手机屏幕尺寸
DisplayMetrics dm = new DisplayMetrics ();
getWindowManager().getDefaultDisplay().getMetrics(dm);
int width = dm.getWidthPixels();
int height = dm.getHeightPixels();
//获取到的高度为不包含标题栏和通知栏的.........
▪ TextUtils的应用 TextUtils的使用
TextUtils
......
[1]资源图片跟BItmap、Drawable互转
来源: 互联网 发布时间: 2014-02-18
资源图片和BItmap、Drawable互转
//Bitmap 转 Drawable BitmapDrawable bd = new BitmapDrawable(bitmap); //Drawable 转 Bitmap Drawable db = XX; BitmapDrawable bd = new (BitmapDrawable)db; Bitmap bmp = bd.getBitmap(); //资源图片 转 Drawable Resources r = getBaseContext().getResources(); Drawable d = r.getDrawable(R.drawable.XX); //紫红色 et.setTextColor(Color.MAGENTA); //直接拿系统资源色做背景 btn.setBackgroundDrawableResource(R.color.red_bg);
[2] 获取手机荧屏尺寸
来源: 互联网 发布时间: 2014-02-18
获取手机屏幕尺寸
DisplayMetrics dm = new DisplayMetrics (); getWindowManager().getDefaultDisplay().getMetrics(dm); int width = dm.getWidthPixels(); int height = dm.getHeightPixels(); //获取到的高度为不包含标题栏和通知栏的高度
[3] TextUtils的应用
来源: 互联网 发布时间: 2014-02-18
TextUtils的使用
TextUtils
TextUtils
最新技术文章: