カメラで撮影した写真を拡大縮小しようとしていますが、どこでどのように行うかわかりません。現在、コードはカメラにアクセスし、写真を撮ってリストビューに表示しています。写真のパスも取得したいのですが、これを行う方法もわかりません。どんな助けでも大歓迎です。
/**
* This function is called when the add player picture button is clicked.
* It accesses the devices gallery and the user can choose a picture
* from the gallery.
* Or if the user chooses to take a picture with the camera, it handles that
*/
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case TAKE_PICTURE:
if (resultCode == Activity.RESULT_OK) {
Uri selectedImage = imageUri;
getContentResolver().notifyChange(selectedImage, null);
ContentResolver cr = getContentResolver();
this.picPath = selectedImage.getPath();
Bitmap bitmap;
try {
bitmap = android.provider.MediaStore.Images.Media
.getBitmap(cr, selectedImage);
imageView = (ImageView) findViewById(R.id.imagePlayer);
imageView.setImageBitmap(bitmap);
Toast.makeText(this, selectedImage.toString(),
Toast.LENGTH_LONG).show();
} catch (Exception e) {
Toast.makeText(this, "Failed to load", Toast.LENGTH_SHORT)
.show();
Log.e("Camera", e.toString());
}
}
ありがとう