Android :: How To Use Camera Application Without SD Card?

Feb 5, 2009

When I was using the camera application, the ERROR: Please insert SD card before using camera jumped out because the driver of sd card haven't been porting properly. Is there anyway to use android camera application without sd card?

Android :: How to use Camera Application without SD Card?


HTC Hero :: Camera Not Working - Message The Application Camera Process Com.android.camera Has Stopped Unexpectedly Please Try Again

Dec 6, 2009

My camera stopped working. When I click my camera application I get the message "The application camera (process com.android.camera) has stopped unexpectedly. Please try again". It's just a blank screen?

View 3 Replies View Related

Android : Get Image Locations On SD Card / At Least Taken By Camera?

Nov 27, 2009

Am looking for a way to find images on the SD card, or at least images taken by the camera.

The ideal solution would be getting a collection of file paths or URIs for the images. I guessing you can do this through the MediaStore I just can't figure out how.

View 1 Replies View Related

Android :: Reading Pictures Written By Camera To SD Card

May 24, 2010

I want to access camera pictures and camera pictures only. I could not find a specification of how the default camera application stores pictures...

1) Is /sdcard/DCIM a standard of any kind? On the Android devices I've used, it looks like the default camera app always writes to this location. Are there devices where pictures are written to a different location? 2) Is it specified that camera JPEGs will always be accessible on the file system? (And not in some private database for example?)

I'm hoping that if the above two are true, then I can simplify my code by simply reading the jpeg's in /sdcard/dcim. Or do I have to use MediaStore.Images.Media.query() for reliable access to camera images?

You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

View 3 Replies View Related

Android :: Any Application To Disable Camera

Dec 30, 2008

Does anyone know of any apps that can disable the camera? My work does not allow camera phones.

View 8 Replies View Related

Android :: How To Call Camera From Own Application?

Jun 23, 2009

I want to call camera application from my own application, take video. Then I want to get the video back and return to my application. How Can I do it?

View 3 Replies View Related

Android :: Camera Application Not Working

Mar 13, 2009

How to make camera work for the android file system. When am I clicking camera application button, only square blocks are coming in the LCD screen.

View 2 Replies View Related

Android :: Camera Application 1.5 On Emulator Do Nothing

May 22, 2009

Strange behaviour with emulator running with Cupcake. When emulator is launched (via ADT), a SD card is mounted correctly, and I click on Camera, I have a black screen and nothing happens, I got the famous error with Wait or Force close wait, wait, wait nothing happens. I create with AVD the target 3. I'm on Windows XP SP2.

View 9 Replies View Related

Android :: How To Activate Camera From My Application?

Aug 19, 2009

How do I pass an Intent from my application to the Camera application to bring it to the foreground?

View 4 Replies View Related

Android :: Using Camera To Take Pictures From My Application

Jan 7, 2010

I've been trying to write an application that uses the Camera App to take a picture. So far, the only thing I've been able to get back successfully is a tiny bitmap picture. I've found several other posts related to this topic that have code that is reported to work, but it does not work for me. I'm hoping someone can steer me in the right direction. Below is the code I am using currently, but it causes the application to blow up.

private void takePicture(final int x, final int y, String description) {
// create a file on the SD card
File file = new File(Environment.getExternalStorageDirectory(),
"tmp_" + String.valueOf(System.currentTimeMillis()) + ".jpg");
// Create the URI that tells the camera where to put the picture.
mOutputFileUri = Uri.fromFile(file);
statusLine.setText("URI => " + mOutputFileUri);
mIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE)
.putExtra(MediaStore.EXTRA_OUTPUT, mOutputFileUri)
.putExtra(PIC_X, x) // x coordinate of square
.putExtra(PIC_Y, y) // y coordinate of square
.putExtra(PIC_DESCRIP,description)
.putExtra("return-data", true) ;
startActivityForResult(mIntent, PIC_FROM_CAMERA);
}

Ultimately, I want to be able to get the picture back and do two things with it: create a 64x64 icon that is displayed by the Android application, and upload the picture to a web application. I'm running this on the emulator using Android 2.0

View 3 Replies View Related

Android :: Compile Camera Application For SDK 1.6

Aug 18, 2010

I am trying to compile and run the Android Camera for sdk 1.6 (also called API level 4 or Donut release). While there is no minSdkVersion in the AndroidManifest, it clearly does not run on a donut device. In fact, if compiled with sdk 2.2 the camera will crash with a NoSuchMethodError execption on an avd or a G1 with sdk 1.6. I tried also checking out the [donut-release] tag, but, strangely, it won't even compile giving many errors like:

[javac] /home/mrucci/camtest2/src/com/android/camera/ImageManager.java:41: cannot find symbol
[javac] symbol : class DrmStore
[javac] location: package android.provider
[javac] import android.provider.DrmStore;
[javac] ^
[javac] /home/mrucci/camtest2/src/com/android/camera/Util.java:32: cannot find symbol
[javac] symbol : class MediaMetadataRetriever
[javac] location: package android.media
[javac] import android.media.MediaMetadataRetriever;
[javac] ^
[javac] /home/mrucci/camtest2/src/com/android/camera/MenuHelper.java:29: cannot find symbol
[javac] symbol : class ExifInterface
[javac] location: package android.media
[javac] import android.media.ExifInterface;
...
[javac] ^
[javac] /home/mrucci/camtest2/src/com/android/camera/ActionMenuButton.java:81: cannot find symbol
[javac] symbol : variable mScrollX
[javac] location: class com.android.camera.ActionMenuButton
[javac] mScrollX + mRight - mLeft),
[javac] ^
[javac] /home/mrucci/camtest2/src/com/android/camera/ActionMenuButton.java:81: cannot find symbol
[javac] symbol : variable mRight
[javac] location: class com.android.camera.ActionMenuButton
[javac] mScrollX + mRight - mLeft),

In particular, I really do not understand why ExifInterface is used in the "donut" tag when it has been introduced since API level 5.

View 1 Replies View Related

Android :: Camera Zoom FX Application?

Oct 19, 2009

I've been using FXCamera for a few weeks now it takes great pictures on my phone, with cool effects like fisheye and the warholizer. FxCamera. Just noticed that android slide has released a version of their Camera ZOOM FX application which has 40 photo FX, geotagging and obviously zoom which I can't do at the moment in FXCamera. Camera ZOOM FX. Just wondering if anyone had a chance to look at either of these apps and which they think is best, because I've been hoping for some new effects for a while and the android slide app sounds worth a look.

View 47 Replies View Related

Android :: Write An Application For Holding Camera

Jun 29, 2010

Writing an application to invoke the camera can be done but I want to write an application to hold on to the camera resources. Meaning while this application is running, camera cannot be accessed by other applications. Is this possible? The aim is as long as the application is running camera cannot be used.

View 5 Replies View Related

Android :: UI Window In Camera Preview Application

Nov 27, 2009

Let's say in my example I am working with SurfaceView for my CameraSurfaceView. I have a few questions, hope you can help me.

1. When this SurfaceView gets created (I assume via final CameraSurfaceView cameraView = new CameraSurfaceView (getApplicationContext()), this will result in a call createSurface() in SurfaceFlinger with format, width and height. Am I correct?
Is this SurfaceView also my UI window if I want to draw anything? I thought if I call setType(PUSH_BUFFER) on this surface, I won't be able to do any drawing on this surface.

2. How does the application pass these information like format, width and height to SurfaceFlinger for the allocation? Is it by using .setFormat, .setFixedSize?

3. How do they methods .setFormat, .setFixedSize related to the surfaceHolder.surfaceChanged() callback?

View 2 Replies View Related

Android :: Best Way To Store Application Images Taken Via Camera

May 5, 2010

I'm just looking for some insight into what would be the best way for me to store images as part of my app. I have an activity that represents a 'Job' which has a couple of edittext's and underneath was planning on using the Gallery component to show images relevant to this job. The job data is stored in a database (on the sdcard) so was also thinking of creating a table to store 'JobImages' and having each image stored as a byte array.

But I'm not sure if it would be better to store the images directly on sdcard under a folder structure specific to my application and the job. E.g. using the job ID number as a folder name. Depending on which method I use will greatly determine the code that goes into an 'adapter' that allows me to bind to the gallery component so before I begin I was wondering if anyone has had the same design problem and what option they chose.

View 1 Replies View Related

Android :: How To Call Inbuilt Camera Application?

Oct 8, 2009

Being a newbie to Android I can't work out how to call the camera application (or you can say camera preview?) when I click a button in my custom application.

View 1 Replies View Related

Android :: Camera Application Preview Crashes

Nov 24, 2010

So I started with this little write-up. I wanted to try to make an application that will take pictures while running in the background. To start though I wanted an application that once opened would simply take a picture every X seconds. After recreating the classes and methods show in the walk through below I ran into a few problems.
http://itp.nyu.edu/~sve204/mobilemedia_spring10/androidCamera101.pdf

For starters its seems that the onCreate function sets up all the objects for the application, but if you try to take a picture through any other method than onClick (IE directly calling it) the application actually hasn't setup the canvas or the preview yet.

My first question:
Is there any conditional method that you can setup that will wait till all the "onCreate" objects are created and their associated methods are called and finished? How do I wait for the application to finish putting together my surface and starting the cameras preview before automatically starting to take pictures?

My second question:
I am required to have a preview available to take pictures. Is there anyway to push this application to the back (IE running in the background) while still taking pictures? Is drawing to a canvas a requirement? (From what I can tell AFAIK, you are required to have a surfaceholder to start preview, when you put up another screen or application that pauses the current application and closes the surface/canvas you were presenting that preview on). If my understanding is correct on all of this the best I will be able to do is make a 1x1 pixel canvas that will still take up the screen due to the application being in the foreground.

My Third question:
Is there any way around this? Can you still utilize the camera in some fashion without requiring the preview be drawn?

View 1 Replies View Related

Android :: Camera Flash In 1.5 And 1.6 - Application Crashes

May 21, 2010

My app is using the camera on the phone. For phones w/ 2.0+ I have been able to activate the Flash. When I test on a phone with 1.5 OS on it the app crashes. I get: java.lang.reflect.InvocationTargetException and the Cause is java.lang.VerifyError: fishers.Nav.TakePicture$1
I assume because you have to access the flash differently in apps below 2.0? Can anyone give me some advice or links to examples showing how I could make it work over the whole range of Operating System version or is that just not at all do-able?

View 5 Replies View Related

Android :: Application For Using Camera Flash For Notifications?

Apr 25, 2010

Being relatively new to my Droid, I'm still finding fun stuff. Recently, I picked up the shell/holster combo and really like it. However, while I am at work, I have my phone on vibrate (thanks Timeriffic) and can't tell who is texting/emailing me like I used to (different colors for the LED, thanks Handcent). What I was wondering is: is it possible to write an app that uses the camera flash like a vibrate function.

The ability to customize the number of flashes and duration would be cool, as would the ability to have it only flash when the phone is on vibrate or silent. Preferably, without having to root the phone. If its not possible due to hardware or software lockouts oh well.

View 1 Replies View Related

Android :: Where Is Macro In Vignette Camera Application?

Sep 6, 2010

I know I just must be over looking it but I can't find a macro setting on Vignette camera. Is it called something else? I thought maybe it just did it automatically but the pics I have tried to take close up were nothing like the stock macro on the X. I'm sure its user error because this app has everything but I can't figure it out.

View 13 Replies View Related

HTC Desire :: Save Camera Pics To Sd Card?

May 29, 2010

trying to save camera pics to my sd card but cannot find an option for this can anyone help

View 1 Replies View Related

HTC Incredible :: Allow Camera To Save Pictures Onto SD Card?

Apr 29, 2010

1) Is there a way to allow the camera to save pictures onto the SD card, as mine does not do so?

2) Within the Gmail app, is there a way to move messages from your inbox to other user-created folders? The Motorola Droid definitely had this option, but on the Incredible it looks like it only lets me apply a "Label", which I'm unfamiliar with, though this does not actually move the e-mail to that folder.

View 8 Replies View Related

Motorola Droid :: Preparing SD Card When Use Camera

Nov 17, 2009

when I tried to use my camera it has the message "preparing sd card" and never lets me use the camera. I can switch to camcorder mode and that works just fine but whenever i switch back to camera mode i get the preparing sd card message. My first thought was that the card was somehow corrupt, but I am able to play mp3s and watch videos from the card with no issues. I also opened astro and navigated to the DCIMcamera folder and i am able to view the pictures in the gallery that i've taken with the default viewer. when i'm in camera mode and try to view the gallery it just says no media found. I have tried rebooting and pulling both the battery and sd card, putting everything back in and powering back up, but it still does the same thing. Anyone ever seen this or have any other advice on a possible fix?

View 7 Replies View Related

HTC Incredible : Transferring Camera Pics To SD Card

Jul 31, 2010

In store Verizon and customer service for over an hour led me to believe that pictures taken on my camera can NOT be transferred to the SD card that is installed. Either that is Horrible or the 4 reps I showed/spoke with are morons. I have 30 pics on my phone that I want sent to the card so I can do a hard reset. Any ideas?

View 10 Replies View Related

HTC Incredible : Camera Not Saving Pics To SD Card

May 31, 2010

When I take pictures with my camera on my Incredible, I'm finding that none of them are saving to the SD card, even though in the camera settings, I selected the option to save to "storage card".After I take a pic, I go into my photos, and I don't see it under the SD card section, it's in the phone storage part,Any help would be appreciated!

View 1 Replies View Related

KitKat 4.4 :: Camera Picture Cannot Go On External SD Card

May 24, 2014

My Samsung Galaxy note II now runs Android 4.4 Kitkat after latest updates. The problem is I want my caera app to store its pictures on my external SD card. and this is not possible. furthermore every app is not able to access my sd card. How can this be corrected ?

View 4 Replies View Related

General :: Can't Take Photo With Camera - SD Card Is Full?

Apr 23, 2014

i flashed my a13 tablet t730 mainboard all things goes right but i can't take a photo with the camera it said your sd card is full??

View 5 Replies View Related

Android :: Speed Camera Application And Google Navigation

Sep 20, 2010

I use google navigation which I think is a brilliant navigation system seeing as it's completely free! The only downside is that it doesn't pick-up speed cameras. Does anyone know of any good speed camera apps that can run in the background or in conjunction with google navigation?

View 1 Replies View Related

Android :: Opening Camera Application And Function As Normal?

Oct 6, 2010

I see a ton of results when searching for how to open the camera, and get the returned image. What about simply opening the camera app without any return at all? I just want the camera to function as normal.

View 1 Replies View Related

Android :: Cropping In Camera Application And Photo Location

Oct 26, 2009

I have not noticed this posted yet so just adding here for those that have not found it. The new camera/video/gallery application supports cropping. After taking a photo or viewing in the gallery, press the Menu button and Crop. You can resize the crop box by touching the edges or move it by touching in the center. Using this feature I was able to create and share panoramic images that were much more interesting. Clicking Menu and then More reveals the "Show on Map" command which displays the location the photo was taken.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved