码迷,mamicode.com
首页 >  
搜索关键字:getwidth    ( 213个结果
拼图效果
public static Bitmap getComponseBitmap(Bitmap src, Bitmap src2){ if(src == null || src2 == null) return null; int width = src.getWidth(); int h...
分类:其他好文   时间:2014-07-16 19:49:20    阅读次数:167
羽化效果
// 羽化效果 public static Bitmap changeToEclosion(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[...
分类:其他好文   时间:2014-07-16 19:45:44    阅读次数:171
卡通效果
// 卡通效果 public static Bitmap changeToCarton(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[wi...
分类:其他好文   时间:2014-07-16 19:40:27    阅读次数:158
Android 图像马赛克处理
自己写个小程序,需求图片转马赛克.protected Bitmap mosic(Bitmap bitmap){ int bitWidth = bitmap.getWidth(); int bitHeight = bitmap.getHeight(); int...
分类:移动开发   时间:2014-07-10 10:17:35    阅读次数:202
Android下在onCreate中获取控件的宽度和高度(通过回调)
有时候需要在onCreate方法中知道某个View组件的宽度和高度等信息, 而直接调用View组件的getWidth()、getHeight()、getMeasuredWidth()、getMeasuredHeight()、getTop()、getLeft()等方法是无法获取到真实值的,只会得到0。...
分类:移动开发   时间:2014-07-09 20:51:46    阅读次数:539
Android Bitmap 常用摘要
1、缩放 public Bitmap scalingBitmap(Bitmap bitmap, int newW, int newH) { int w = bitmap.getWidth(); int h = bitmap.getHeight(); float sx = (float) new...
分类:移动开发   时间:2014-07-09 19:15:58    阅读次数:231
Android中实现Gallery 点击放大
图片放大的思路: 第一、可以通过Matrix对象来变换图像,在选择的时候放大,在失去焦点的时候,缩小到原来的大小。double scale = 1.2;int width = bm.getWidth();int height = bm.getHeight();Log.i("size:", wi...
分类:移动开发   时间:2014-07-09 16:35:13    阅读次数:234
Android剪裁图片简单的方法
/** * 按正方形裁切图片 */ public static Bitmap ImageCrop(Bitmap bitmap) { int w = bitmap.getWidth(); // 得到图片的宽,高 int h = bitmap.getHeight(); int wh = w > h ? h : w;// 裁切...
分类:移动开发   时间:2014-07-09 10:33:18    阅读次数:233
Android-获取窗口的宽度与高度
在开发的过程中,有时候需要获取窗口的大小,在OnCreate中由于窗口还未绘制因此通过GetWidth()与GetHeight()得到的宽高都为0,那应该如何获取窗口的大小呢,上代码:LinearLayout layout = (LinearLayout) findViewById(R.id.lay...
分类:移动开发   时间:2014-06-26 23:32:08    阅读次数:217
Display中getHeight()和getWidth() 官方废弃
今天使用Display获取屏幕的宽和高时出现下面的提示:Display dp=getWindowManager().getDefaultDisplay(); int Height=dp.getHeight(); ---->The method getHeight() from t...
分类:其他好文   时间:2014-06-03 11:37:47    阅读次数:395
213条   上一页 1 ... 19 20 21 22 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!