zoukankan      html  css  js  c++  java
  • Android实现拍照与打开本地图片

    代码如下:

    publicclass MainActivity extends Activity {

        private Button btnCamera;

        private Button btnLocalPic;

        private ImageView imageView;

        @Override

        protectedvoid onCreate(Bundle savedInstanceState) {

            // TODO Auto-generated method stub

            super.onCreate(savedInstanceState);

            setContentView(R.layout.mainactivity);

            btnCamera = (Button) this.findViewById(R.id.btnCamera);

            btnLocalPic = (Button) this.findViewById(R.id.btnlocalPic);

            imageView = (ImageView) this.findViewById(R.id.imageView1);

            btnCamera.setOnClickListener(new OnClickListener() {

                @Override

                publicvoid onClick(View arg0) {

                    // TODO Auto-generated method stub

                    Intent intent = new Intent(

                            android.provider.MediaStore.ACTION_IMAGE_CAPTURE);

                    startActivityForResult(intent, 1000);

                }

            });

            btnLocalPic.setOnClickListener(new OnClickListener() {

                @Override

                publicvoid onClick(View arg0) {

                    // TODO Auto-generated method stub

                    Intent intent = new Intent(Intent.ACTION_GET_CONTENT);

                    intent.setType("image/*");

                    intent.putExtra("crop", true);

                    intent.putExtra("return-data", true);

                    startActivityForResult(intent, 1001);

                }

            });

        }

        @Override

        protectedvoid onActivityResult(int requestCode, int resultCode, Intent data) {

            // TODO Auto-generated method stub

            super.onActivityResult(requestCode, resultCode, data);

            if (requestCode == 1000 && resultCode == RESULT_OK) {

                Bundle bundle = data.getExtras();

                Bitmap bm = (Bitmap) bundle.get("data");

                imageView.setImageBitmap(bm);

            } elseif (requestCode == 1001 && resultCode == RESULT_OK) {

                Uri uri = data.getData();

                ContentResolver contentResolver = getContentResolver();

                try {

                    Bitmap bm = BitmapFactory.decodeStream(contentResolver

                            .openInputStream(uri));

                    imageView.setImageBitmap(bm);

                } catch (Exception e) {

                    // TODO: handle exception

                    e.printStackTrace();

                }

            }

        }

    }

  • 相关阅读:
    主流软件系统类别
    vue 生命周期
    redis 实现多属性查询
    业务逻辑层缓存设计
    ORM 缓存
    keepalived+nginx实现niginx高可用,宕机自动重启
    cookie sessionstorge localstorge 的比较
    css 定位
    2019年1月2日 生产者消费者模型 元旦快乐
    2018年12月25日 圣诞节快乐 生成器plus
  • 原文地址:https://www.cnblogs.com/Yellow0-0River/p/4240617.html
Copyright © 2011-2022 走看看