您的位置:首页 > 其它

利用nofllow与内页链接做好SEO

2011-08-22 23:31 302 查看
//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);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: