android-camera-intent Questions
11
Solved
My app allows the user to press a button, it opens the camera, they can take a photo and it will show up in an ImageView. If the user presses back or cancel while the camera is open I get this forc...
Gaulin asked 4/12, 2011 at 6:30
2
Solved
it's possible to disable/remove this photo confirmation dialog:
I need somehow skip this dialog but I still want use an Intent. I found this android: Take camera picture without "save"...
Tardy asked 12/3, 2016 at 10:44
4
I used this code to capture an image from the camera.
package android.takeowneship;
import java.io.File;
import android.app.Activity;
import android.content.ContentValues;
import android.conten...
Zeller asked 17/3, 2012 at 18:41
5
Solved
I am using native Android camera and save file to my application data folder (/mnt/sdcard/Android/data/com.company.app/files/Pictures/). At the same time anther copy of photo is saved to DCIM folde...
Biodegradable asked 10/11, 2011 at 11:36
7
Solved
I follow the instruction on Camera on Android dev site
I just start the Camera Intent, not build my own camera.
The sample code to handle result return after taking a photo is as follows.
pro...
Vedetta asked 28/1, 2013 at 8:35
3
Solved
I have read a lot of questions regarding this problem. Some are similar to what I am experiencing; I have tried the answers with no success. The code works on a HTC Android 4.2 and doesn't work on ...
Alkylation asked 1/7, 2014 at 6:46
6
I have two Activities, A1 and A2. A1 calls A2 and from A2, I am calling the camera intent as below:
launchIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
launchIntent.putExtr...
Fencible asked 15/4, 2013 at 12:16
8
I am using camera intent to capture images in my App. The problem my app crashes on Android 5.0.2 while using camera. I am using intent from fragment. Below is my code inside fragment:
Method to t...
Cami asked 29/12, 2015 at 5:3
4
The thing what I wanted to implement that users can record video only for 30 seconds or by a specific size.
I tried to use those below (both seperately or together)
public static final java.lang...
Phenetidine asked 24/1, 2013 at 12:55
2
Solved
I cannot believe that I've struggled with this simple problem for hours now, but I cannot get it to run properly. In principle I want this functionality:
The user clicks a button. An ACTION_IMAGE_...
Landsman asked 15/2, 2018 at 12:48
0
Recently Uber has released a Face Recognition feature and I'm trying to create a similar camera preview it looks like this :
I need to create a transparent circle to focus the users face to the ...
Mixedup asked 18/10, 2017 at 4:3
1
Whenever I try to open camera/gallery through intent, I am getting this error in my Honor 4C mobile, Android version 6.0 with 64-bit octa-core CPU.
load: so=/system/lib64/libhwuibp.so
dlopen faile...
Lael asked 3/10, 2016 at 14:7
2
So im trying to allow the user to take a picture which I would then send to a server. I am a bit of a noob in android so i followed this tutorial on how to do so. I've seen a few questions similar ...
Sarita asked 6/2, 2017 at 0:39
14
We are trying to use the native camera app to let the user take a new picture. It works just fine if we leave out the EXTRA_OUTPUT extra and returns the small Bitmap image. However, if we putExtra(...
Tridentine asked 15/12, 2009 at 21:41
6
Solved
I tried to take a photo and then to use the photo. Here is what I did.
My device was Nexus 6P (Android 7.1.1).
First, I created a Uri:
Uri mPicPath = UriUtil.fromFile(this, UriUtil.createTmpFile...
Conceivable asked 16/2, 2017 at 3:19
4
In my app a capture button is there to capture an image using device camera,so I have used a method captureImage() on the click event of that button.When I click the button a null pointer exception...
Leix asked 10/7, 2015 at 6:56
2
Solved
In my android application I am capturing photo using Android default camera for this purpose I have used below code.after captured a photo I have shown that Image into another activity in full scre...
Something asked 14/8, 2014 at 14:27
2
I've been needing to get a solution for this problem. I've already searched and tested many solutions from this community but anyone was fit for helping me.
I have two activities, the first one ta...
Katz asked 17/8, 2015 at 5:17
3
Solved
i've really frustased to solve my problem, i have an application that using camera, when camera capture a photo, it will display on activity, when i'm not using cameraIntent.putExtra(MediaStore.EXT...
Araucania asked 27/9, 2013 at 4:4
2
Solved
I have had a look around but there doesn't seem to be a solid answer/solution to the, very irritating, problem.
I take a picture in portrait orientation and when I hit save/discard the butto...
Avulsion asked 17/10, 2012 at 11:16
2
I am uploading image to server but image is rotate after uploaded to server Even preview is showing correct.
So many people facing this problem i found this link but didn't work. And there is many...
Legrand asked 13/9, 2016 at 11:41
3
I am able to open the device's Camera from my Activity using an Intent as follows:
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
Uri fileUri = getOutputMediaF...
Strenuous asked 23/5, 2014 at 5:23
3
Solved
My problem is that every time i choose third party camera application for example Beauty Plus Camera i got null pointer exception every time, my code is completely working for default camera applic...
Atrioventricular asked 24/6, 2016 at 9:48
3
I updated my nexus 5 Android OS version to 5.1.1 and also updated the Google Camera and Google Photos application. After this, when ever I tried to capture image and Crop it, my application crashes...
Ladylike asked 17/6, 2015 at 11:12
3
Solved
I'm working on an Android application which needs to perform an action each time a new image is taken with the phone. I don't want to take the image within my application, but rather perform some a...
Bohlin asked 8/12, 2010 at 15:52
© 2022 - 2024 — McMap. All rights reserved.