私は、「画像ビュー」と「ボタン」というuploadImageを含むアプリを持っています。私がアップロード画像をクリックすると、画像を選択して画像ビューで設定できる場所から選択オプションが開きます。問題は、画像ビューで画像を設定する前に、私は画像サイズが200kb以上であるかどうかを確認したい場合、見つかったらトーストメッセージを表示してください。アンドロイドの画像ビューに挿入する前に、画像サイズを確認するにはどうすればよいですか?
コード: -
private void showFileChooser() {
// Create intent to Open Image applications like Gallery, Google Photos
Intent galleryIntent = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(galleryIntent,PICK_IMAGE_REQUEST);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
try {
// When an Image is picked
if (requestCode == PICK_IMAGE_REQUEST && resultCode == RESULT_OK
&& null != data) {
// Get the Image from data
Uri selectedImage = data.getData();
String[] filePathColumn = { MediaStore.Images.Media.DATA };
// Get the cursor
Cursor cursor = getContentResolver().query(selectedImage,
filePathColumn, null, null, null);
// Move to first row
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
imgDecodableString = cursor.getString(columnIndex);
cursor.close();
// Set the Image in ImageView after decoding the String
m_UploadImage.setImageBitmap(BitmapFactory
.decodeFile(imgDecodableString));
} else {
Toast.makeText(this, "You haven't picked Image",
Toast.LENGTH_LONG).show();
}
} catch (Exception e) {
Toast.makeText(this, "Something went wrong", Toast.LENGTH_LONG)
.show();
}
}
http://stackoverflow.com/questions/29137003/how-to-check-image-size-less-then-100kb-android これがあなたを助けてくれることを願っています。 –
イメージの解像度ではなく、KB単位でサイズを確認する必要がありますか? –