android捕获照片并将其保存在图像视图中并发送彩信?

时间:2015-02-09 17:15:15

标签: android eclipse imageview android-camera

如果我不想要照片并拍摄另一张照片并通过彩信发送照片,我想拍照并在图片视图中显示,并在图片视图中显示删除按钮。

1 个答案:

答案 0 :(得分:0)

声明Button和ImageView

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

按钮OnCLick以捕获图像

 photoButton.setOnClickListener(new View.OnClickListener() {
       public void onClick(View v) {
                Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE); 
                startActivityForResult(cameraIntent, CAMERA_REQUEST); 
            }
        });

将捕获的图像放入ImageView

protected void onActivityResult(int requestCode, int resultCode, Intent data) {  
        if (requestCode == CAMERA_REQUEST && resultCode == RESULT_OK) {  
            Bitmap photo = (Bitmap) data.getExtras().get("data"); 
            imageView.setImageBitmap(photo);
        }  
    }

需要在Manifest文件中添加

<uses-feature android:name="android.hardware.camera"></uses-feature> 

我不太清楚发送图像彩信

更多参考资料

How to send image via MMS in Android?