[android-beginners] Re: Cant view images

2009-01-22 Thread Mark Murphy
myIP wrote: > When I try to view an image (any image) in the emulator, I get a pop- > up with the following message: > > "Sorry! The application Camera (process com.android.camera) has > stopped unexpectedly. Please try again." > > > Again, all I am trying to do is view an image. Any suggest

[android-beginners] Re: Cant view images

2009-01-23 Thread myIP
I mounted a SD card in the emulator; using the following command: emulator -sdcard And then pushed JPEG images to it; using the following command: adb push I am able to view these image's *thumbnails* fine in the Picture application. However, when I click on the thumbnail to view the image,

[android-beginners] Re: Cant view images

2009-01-23 Thread myIP
Errr. Now I get this error message in Eclipse's Console when I try to run my application. "... Failed to upload Zeal Project.apk on 'emulator-5554': No space left on device" I only have one third party application installed on the emulator and 23MB of pictures on a 1gig SD card. --~--~-

[android-beginners] Re: Cant view images

2009-01-31 Thread OCS
have the same problem. push the images into the sdcard . Can see the thumbviews but when click to view the image the emulator crash saying "Camera(process com.android.camera) has stopped unexpectedly.". Happens even when clicking menu->settings. anyone has an idea? thanks On Jan 23, 3:15 pm,

[android-beginners] Re: Cant view images

2009-02-02 Thread myIP
The culprit, 'Android SDK: android-sdk-windows-1.0_r2'. The solution, use 'Android SDK: android-sdk-windows-1.0_r1'. I just downloaded 'release 1', and placed it in the same directory as 'release 2'. Then changed my setting in Eclipse and now I am able to view the images. Unless I didn't config

[android-beginners] Re: Cant view images

2009-03-05 Thread zeeshan
Hi, i am having the same problem as well. actually i need to use crop funtion for my images, here is some of my code: Intent i = new Intent("com.android.camera.action.CROP"); i.setClassName("com.android.camera","com.android.camera.CropImage"); it is giving me exception, Camera(process com.andr

[android-beginners] Re: Cant view images

2009-03-05 Thread zeeshan
Hi, i am having the same error when i try to open any image in the Pictures directory. i actually want crop funtion like Intent i = new Intent("com.android.camera.action.CROP"); i.setClassName("com.android.camera","com.android.camera.CropImage"); which is giving me the same error as it is relat

[android-beginners] Re: Cant view images

2009-03-06 Thread mcmc
Try running "adb logcat" when the emulator is running. It should tell you the problem, or at least where the problem lies... On Mar 5, 4:57 am, zeeshan wrote: > Hi, > i am having the same error when i try to open any image in the > Pictures directory. > > i actually want crop funtion like > > In