xorpas 4 Posted June 19 I have this code to select image need to show it on image control var Intent: JIntent; begin Intent := TJIntent.Create; Intent.setAction(TJIntent.JavaClass.ACTION_OPEN_DOCUMENT) .addCategory(TJIntent.JavaClass.CATEGORY_OPENABLE) .setType(StringToJString('image/*')); TAndroidHelper.Activity.startActivityForResult(Intent, Dosya_Sil); if Intent.resolveActivity(TAndroidHelper.Context.getPackageManager) <> nil then begin MainActivity.startActivityForResult(Intent, Resim_Goster); // ImageControl1.Bitmap.Assign(); end else ShowMessage('No picture received!'); Share this post Link to post