ユーザーが電話ギャラリーセクションから自分の画像を開くとすぐに、サーバーに画像をアップロードするアプリを実装する必要があります.私の質問は、画像パスを取得する方法ですか? 前もって感謝します
質問する
281 次
1 に答える
0
最初にこのインテントを呼び出して、ギャラリーから画像を選択します:
private static final int SELECT_PHOTO = 100;
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/*");
startActivityForResult(photoPickerIntent, SELECT_PHOTO);
ギャラリーから画像を選択すると、次のonActivityResult
メソッドが自動的に呼び出されます。
@Override
protected void onActivityResult(int requestCode, int resultCode,
Intent imageReturnedIntent) {
super.onActivityResult(requestCode, resultCode, imageReturnedIntent);
switch (requestCode) {
case SELECT_PHOTO:
if (resultCode == RESULT_OK) {
Uri selectedImage = imageReturnedIntent.getData();
try {
yourImageView.setImageBitmap(decodeUri(selectedImage));
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
}
変数で画像パスを取得しselectedImage
ます。
ありがとう。
于 2013-01-07T10:56:23.997 に答える