Ich versuche, die Kamera im Fragment zu starten, aber onActivityResult im Fragment löst RESULT_OK nicht auf. Was soll ich machen?
Ich starte die Kamera mit:
public static final int CAMERA_REQUEST_CODE = 1999;
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent, CAMERA_REQUEST_CODE);
Holen Sie sich ein aufgenommenes Bild mit:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == CAMERA_REQUEST_CODE && resultCode == RESULT_OK) {
Bitmap bitmap = (Bitmap) data.getExtras().get("data");
if (bitmap != null) {
}
}
}
und ich möchte ein aufgenommenes Bild im aktuellen Fragment!
android
android-fragments
Tulsiram Rathod
quelle
quelle
Alternativ können Sie es hinzufügen
import static android.app.Activity.RESULT_OK;
und in Ihrem Fall wie verwendenif (requestCode == CAMERA_REQUEST_CODE && resultCode == RESULT_OK) {..}
quelle