初步实现了相机的调用,做了简单界面,并没有实现核心功能

Button button = (Button) findViewById(R.id.sao);
        button.setOnClickListener(new OnClickListener()
        {
            @Override
            public void onClick(View v) {
            	Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
                startActivityForResult(intent, 1);
            }
        });

 

posted on 2015-05-23 21:33  hzsy  阅读(128)  评论(0编辑  收藏  举报