
图片
zyzzsky
这个作者很懒,什么都没留下…
展开
-
android 截屏
// 截屏 public static Bitmap getScreenshotsForCurrentWindow(Activity activity) { View cv = activity.getWindow().getDecorView(); Bitmap bmp = Bitmap.createBitmap(cv.getWidth(), cv....原创 2012-12-16 17:03:07 · 97 阅读 · 0 评论 -
获取系统中的图片资源
public class Main extends Activity { private final String TAG = "org.fighter.image"; private final int LOAD_IMAGE = 101; private Button btnLoadPicture; private ImageView imgView; privat...原创 2012-12-26 11:12:11 · 117 阅读 · 0 评论 -
获取系统相机的图片并加入剪切功能
package com.example.imagedemo001; import android.app.Activity; import android.content.Intent; import android.graphics.Bitmap; import android.os.Bundle; import android.provider.MediaStore; impo...原创 2012-12-26 14:45:30 · 83 阅读 · 0 评论 -
使用android调用系统图片(剪切)功能
private Intent formatBmIntent(Bitmap bm) { // Intent intent = new Intent("com.android.camera.action.CROP"); // 在本地选择图片进行剪切 Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.se...原创 2013-01-29 09:51:25 · 148 阅读 · 0 评论