private void startPhotoAlbum(){Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);startActivityForResult(intent, UConstants.GETIMAGE);}private String urlTempPic = "";private void startCamera(){Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);urlTempPic = getImagePath();i.putExtra(android.provider.MediaStore.EXTRA_OUTPUT, Uri.fromFile(new File(urlTempPic)));startActivityForResult(i, UConstants.CAPUTRE);}public static String getImagePath(){String path = null;String dir = getExternalStoragePublicDirectory(UDataStorage.Dir_Pictures) + "/pyj/temp/pics/";path = dir + System.currentTimeMillis() + ".jpg";ensureDir(dir);return path;}public static boolean ensureDir(String dir){boolean result = false;File file = new File(dir);if (!file.exists())result = file.mkdirs();return result;}public static File getExternalStoragePublicDirectory(String type){File file = null;String path = Environment.getExternalStorageDirectory().getAbsolutePath() + "/" + type;file = new File(path);if (!file.exists())file.mkdirs();return file;}

private static final int DIALOG_YES_NO_LONG_MESSAGE = 1;@Overrideprotected Dialog onCreateDialog(int id) {// TODO Auto-generated method stubswitch (id) {case DIALOG_YES_NO_LONG_MESSAGE:            return new AlertDialog.Builder(JSelectEventTypeActivity.this,AlertDialog.THEME_HOLO_LIGHT)                .setTitle("提示")                .setPositiveButton("从相册", new DialogInterface.OnClickListener() {                    public void onClick(DialogInterface dialog, int whichButton) {                            /* User clicked OK so do some stuff */                    startPhotoAlbum();                    }                })                .setNeutralButton("从相机", new DialogInterface.OnClickListener() {                    public void onClick(DialogInterface dialog, int whichButton) {                        /* User clicked Something so do some stuff */                    startCamera();                    }                })                .setNegativeButton("不需要", new DialogInterface.OnClickListener() {                    public void onClick(DialogInterface dialog, int whichButton) {                    }                })                .create();}return null;}

@Overrideprotected void onActivityResult(int requestCode, int resultCode, Intent data) {// TODO Auto-generated method stubswitch (resultCode) {case RESULT_OK:if (requestCode == UConstants.CAPUTRE){// Load up the image's dimensions not the image itselftry {BitmapFactory.Options bmpFactoryOptions = new BitmapFactory.Options();bmpFactoryOptions.inJustDecodeBounds = true;Bitmap bmp = BitmapFactory.decodeFile(urlTempPic,bmpFactoryOptions);int widthRatio = (int) Math.ceil(bmpFactoryOptions.outWidth / (float) 1080);if (widthRatio > 1){bmpFactoryOptions.inSampleSize = widthRatio;}bmpFactoryOptions.inJustDecodeBounds = false;bmp = BitmapFactory.decodeFile(urlTempPic, bmpFactoryOptions);} catch (Exception e) {// TODO Auto-generated catch blocke.printStackTrace();}}else if (requestCode == UConstants.GETIMAGE){Uri imageFileUri = data.getData();try {BitmapFactory.Options bmpFactoryOptions = new BitmapFactory.Options();bmpFactoryOptions.inJustDecodeBounds = true;Bitmap bmp = BitmapFactory.decodeStream(getContentResolver().openInputStream(imageFileUri), null, bmpFactoryOptions);int widthRatio = (int) Math.ceil(bmpFactoryOptions.outWidth/ (float) 1080);if (widthRatio > 1) {bmpFactoryOptions.inSampleSize = widthRatio;}bmpFactoryOptions.inJustDecodeBounds = false;bmp = BitmapFactory.decodeStream(getContentResolver().openInputStream(imageFileUri),null, bmpFactoryOptions);} catch (Exception e) {// TODO: handle exception}}break;default:break;}}



更多相关文章

  1. Android自动提示文本框(AutoCompleteTextView)
  2. Android 常用的提示框,输入框,弹窗
  3. 混合开发-H5 调用Android 的相册和照相机上传图片的问题
  4. android studio升级时提示 Connection failed. Please check you
  5. Android调用相机接口
  6. Android中使用查找提示
  7. android之相机开发
  8. android 添加button事件后 提示 view cannot be resolved to a t
  9. Android 调用系统相机 失败

随机推荐

  1. ffmpeg入门教程之Android使用FFmpeg so(AP
  2. 滚动条的使用
  3. 安卓开发之控件TextView和EditView
  4. Android剪切板设置和读取字符串String 关
  5. Flutter 修改或者查看pubspec.yaml 导致A
  6. post postinvalidate invalidate
  7. Android题目笔记(二)
  8. android打造的最简单计算器界面
  9. 线程和线程池
  10. 如何唯一确定一台 Android(安卓)设备?