自己写个小程序,需求图片转马赛克.protected Bitmap mosic(Bitmap bitmap){ int bitWidth = bitmap.getWidth(); int bitHeight = bitmap.getHeight(); int...
分类:
移动开发 时间:
2014-07-10 10:17:35
阅读次数:
202
有时候需要在onCreate方法中知道某个View组件的宽度和高度等信息, 而直接调用View组件的getWidth()、getHeight()、getMeasuredWidth()、getMeasuredHeight()、getTop()、getLeft()等方法是无法获取到真实值的,只会得到0。...
分类:
移动开发 时间:
2014-07-09 20:51:46
阅读次数:
539
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
图片放大的思路: 第一、可以通过Matrix对象来变换图像,在选择的时候放大,在失去焦点的时候,缩小到原来的大小。double scale = 1.2;int width = bm.getWidth();int height = bm.getHeight();Log.i("size:", wi...
分类:
移动开发 时间:
2014-07-09 16:35:13
阅读次数:
234
在开发的过程中,有时候需要获取窗口的大小,在OnCreate中由于窗口还未绘制因此通过GetWidth()与GetHeight()得到的宽高都为0,那应该如何获取窗口的大小呢,上代码:LinearLayout layout = (LinearLayout) findViewById(R.id.lay...
分类:
移动开发 时间:
2014-06-26 23:32:08
阅读次数:
217
public final intgetMeasuredHeight()Added inAPI
level 1LikegetMeasuredHeightAndState(), but only returns the raw width component
(that is the result is...
分类:
移动开发 时间:
2014-06-06 09:15:59
阅读次数:
494
今天使用Display获取屏幕的宽和高时出现下面的提示:Display
dp=getWindowManager().getDefaultDisplay(); int Height=dp.getHeight();
---->The method getHeight() from t...
分类:
其他好文 时间:
2014-06-03 11:37:47
阅读次数:
395
重置Bitmap大小 Bitmap bitMap =
BitmapFactory.decodeFile(path);int width = bitMap.getWidth();int height =
bitMap.getHeight();// 设置想要的大小int newWidth = 500;i...
分类:
移动开发 时间:
2014-05-26 12:07:00
阅读次数:
263
interface
定义了一个接口类,它里面的方法其子类必须实现。接口是类的一个模板,其子类必须实现接口中定义的所有方法。 interface User{ function
getHeight($height); function getWeight($weight); } class my imp...
分类:
Web程序 时间:
2014-05-07 18:19:12
阅读次数:
294