Android :: Builtin Intent For Viewing Image?

Feb 26, 2010

Is there a built-in intent which will let you pass it the path of an image (png or jpg) and show it full-screen with panning / zooming controls? Basically the same controls WebView has, but only for a single image. I saw that iPhone has something like this, just wondering if there's already something like this on android before writing a new one.

Android :: Builtin intent for viewing image?


Android :: Image Editing / Viewing Application?

Aug 8, 2010

I'm looking for a decent image editing, viewing, and organizing app. Something thats better than the default that comes with the htc EVO, but nothing over-kill. I'm not looking for CS5 for my phone.

View 5 Replies View Related

HTC Incredible :: Image Viewing Settings

Jul 3, 2010

I am sorry if this has already been asked but I have not found a solution yet, I am hoping someone can help. When viewing photos they show in the oldest first, How do you reverse that so that you can see the most recent pictures first? It is a pain to have to scroll all the way to then end of over 200 pictures to see the latest.

View 12 Replies View Related

HTC EVO 4G :: How To Save Image When Viewing It Directly In Web Browser

Oct 16, 2010

If I go to AndroidForums on my phone, and I long-press on the logo, I have the option to save it.However, if I go to a direct link like http://imgur.com/OLnXZ.jpg and it just loads the image, how do I save it now? I long-press on the image and it doesn't do anything. I am rooted and running a custom ROM, but I don't remember being able to do this on stock.

View 2 Replies View Related

Android :: Pass Image To New Intent

Nov 19, 2009

I've got a problem My app show a first layout like: Gridview1 (3 images in 1 row) ImageView1 (1 image) Gridview2 (3 images in 1 row) ImgaeView2 (1 image) Gridview3 (3 images in 1 row) ImgaeView3 (1 image) When you clik over an image it will be open full screen in a second layout, The problem was that I don't know how to pass the image to the new intent. Now I've the next code:

public AdapterView.OnItemClickListener pulsarImagen = new AdapterView.OnItemClickListener() { public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,long arg3) { Intent intent = new Intent(GridViewer.this , GalleryViewer.class); intent.putExtra("id", arg0.getItemIdAtPosition (arg2)); startActivity(intent); //finish(); } };

But the ItemID is always 0. Before I've only one gridview and then I passed the item's position. But now I've 3 different gridviews and I don't know if the position of item selecte it's from gridview 1,2 or 3. I supose that the great solutin it will be to pass the id resource (image) but I don't know how to pass it. Can you help me?

View 4 Replies View Related

Android :: Image Captured Using Intent I / Very Small

Feb 9, 2009

I am capturing Image from app using:
The image captured using Intent i = new Intent ("android.media.action.IMAGE_CAPTURE");
but it is very small (25*50). Why this is happening?

View 2 Replies View Related

Android :: Image Intent From URL To Browser Or Other Activity

Oct 6, 2010

I want to have an image open from a URL to an intent, most likely the browser or maybe a picture previewer like the one built into twidroyd.I've gotten plain URLs to open to the browser. I just can't figure out what action or category to specify,

View 1 Replies View Related

Android :: Get Image From Received Share Intent

Sep 14, 2010

I'm creating an app for posting pictures to a particular proprietary social site. I have it working with the camera and the IMAGE_CAPTURE intent. I want to add the ability to do this from pictures in the Gallery. I seem to have everything wired up, but I'm scratching my head how to get the image from the intent when my activity is lauched from the Gallery's share menu. In onCreate, the code getIntent().getDataType() returns "image/jpeg", as expected, but how to I get the picture from the Gallery into my ImageView?

The code at http://stackoverflow.com/questions/2206397/android-intent-action-send... suggests how the Gallery app is adding the picture by means of emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(png)); but on my end, it's not clear to me at all how to get that Uri from the intent.

View 5 Replies View Related

Android : Get Back Image Taken After Intent MediaStore?

Oct 7, 2010

How do i get back the image taken from starting the Intent(MediaStore.ACTION_IMAGE_CAPTURE)?

I need the image to be display as a thumbnail and also be attached to email.

View 2 Replies View Related

Android :: Image Capture Intent / Activity Not Get Called

Jun 26, 2009

I start an IMAGE_CAPTURE Intent like this, and my activity's onActivityResult() get called: Intent i = new Intent (android.provider.MediaStore.ACTION_IMAGE_CAPTURE, null); i.putExtra("return-data", true);
startActivityForResult(i, PICK_ICON_FROM_CAMERA_ID);
But, if I start my Intent like this, the Capture Image Intent did get called, but my activity's onActivityResult() never get called:
Intent i = new Intent (android.provider.MediaStore.ACTION_IMAGE_CAPTURE, null); i.putExtra(MediaStore.EXTRA_OUTPUT, Uri.parse("file:/" + "MyTestFile")); i.putExtra("outputFormat", Bitmap.CompressFormat.PNG.name());
startActivityForResult(i, PICK_ICON_FROM_CAMERA_ID);

View 3 Replies View Related

Android :: How To Launch Intent To Pick Image From SD Card?

Jun 13, 2009

Can you please tell me how can I launch the intent to pick image from SD card?

View 6 Replies View Related

Android :: Launch Intent Viewer To Display Image From Url

Jun 1, 2010

I have the url of an image. What i need to do is launch the default image viewer for images using an intent. But it doesn't work. If I do not specify the type of data, the intent launches the browser since the data is a url. It works basically (since you can see the image on the browser) but what I would like is to have the gallery display the image for me.I can also download the image into a Bitmap but I would still not know how to display the Bitmap using the gallery (if that's even possible).I tried saving the bitmap to the cache and then launch the viewer on that file but it doesn't work. Can you spot any mistakes on my code? (The Utilities class is a class i wrote.

View 3 Replies View Related

Android :: Launch Email Intent With Attached Image

Jun 29, 2009

I am trying to launch an email intent with an attached jpg. I did:

Intent intent4 = new Intent(Intent.ACTION_SENDTO,
Uri.fromParts("mailto", "testemail@gmail.com", null));
startActivity(intent4);
this launches the email activity.
But when I try to add DataAndType (my jpeg attachment). It fails with
android.content.ActivityNotFoundException: No Activity found to handle Intent { action=android.intent.action.SENDTO data=file:///data/data/com.mycompany.mypackage/files/temp-picture type=JPEG
Intent intent4 = new Intent(Intent.ACTION_SENDTO,
Uri.fromParts("mailto", "testemail@gmail.com", null));
intent4.setDataAndType(Uri.parse("file://"+ mTempFilePath),
Bitmap.CompressFormat.JPEG.name());
startActivity(intent4);

View 1 Replies View Related

Android :: Builtin Function In Java For Removing Space Between XML Tags

Nov 24, 2010

Is there any built-in function available in java for removing contents (ex: white space) between XML tags: <student> <name>miya</name> <number>12</number> </student> I want to convert the above document as: <student><name>miya</name><number>12</number></student> by removing the white space?

View 2 Replies View Related

Android :: Builtin Gmail Application - Better Default Text Messaging?

Sep 10, 2010

I'm gonna be buying the Samsung Galaxy S in a couple of hours and I wanted to ask y'all: 1.) Is there a built in GMail app or do I have to download something new? 2.) Is the default text messaging good or do I need to download something better? 3.) What is a good browser for this phone? Are there any cool tricks which you guys would like to share? I went through the stickies and looked at how I can protect myself from Malware, etc. I think I know the basics. I apologize if I sound silly, this is my first Android phone and the reason why I am getting it is because of the awesome reviews. I'm also shifting from being a devout Nokia user to something totally different so I am kinda anxious, you know?

View 12 Replies View Related

Android :: Launching Intent Not Working On Saved Image File

Jun 2, 2010

First of all let me say that this questions is slightly connected to another question by me. Actually it was created because of that. I have the following code to write a bitmap downloaded from the net to a file in the sd card:

// Get image from url
URL u = new URL(url);
HttpGet httpRequest = new HttpGet(u.toURI());
HttpClient httpclient = new DefaultHttpClient();
HttpResponse response = (HttpResponse) httpclient.execute(httpRequest);
HttpEntity entity = response.getEntity();
BufferedHttpEntity bufHttpEntity = new BufferedHttpEntity(entity);
InputStream instream = bufHttpEntity.getContent();
Bitmap bmImg = BitmapFactory.decodeStream(instream);
instream.close();

// Write image to a file in sd card
File posterFile = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/Android/data/com.myapp/files/image.jpg");
posterFile.createNewFile();
BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(posterFile));
Bitmap mutable = Bitmap.createScaledBitmap(bmImg,bmImg.getWidth(),bmImg.getHeight(),true);
mutable.compress(Bitmap.CompressFormat.JPEG, 100, out);
out.flush();
out.close();

// Launch default viewer for the file
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(posterFile.getAbsolutePath()),"image/*");
((Activity) getContext()).startActivity(intent);

A few notes. I am creating the "mutable" bitmap after seeing someone using it and it seems to work better than without it. And I am using the parse method on the Uri class and not the fromFile because in my code I am calling these in different places and when I am creating the intent I have a string path instead of a file. Now for my problem. The file gets created. The intent launches a dialog asking me to select a viewer. I have 3 viewers installed. The Astro image viewer, the default media gallery (I have a milstone on 2.1 but on the milestone the 2.1 update did not include the 3d gallery so it's the old one) and the 3d gallery from the nexus one (I found the apk in the wild). Now when I launch the 3 viewers the following happen:

Astro image viewer: The activity launches but I see nothing but a black screen.
Media Gallery: I get an exception dialog shown "The application MediaGallery (process com.motorola.gallery) has stoppedunexpectedly. Please try again" with a force close option.
3D gallery: Everything works as it should.

When I try to simply open the file using the Astro file manager (browse to it and simply click) I get the same option dialog but this time things are different:
Astro image viewer: Everything works as it should.
Media Gallery: Everything works as it should.
3D gallery: The activity launches but I see nothing but a black screen.

As you can see everything is a complete mess. I have no idea why this happens but it happens like this every single time. It's not a random bug. Am I missing something when I am creating the intent? Or when I am creating the image file? As noted in the comment here is the part of interest in adb logcat. Also I should note that I changed the way I create the image file. Since I want to create a file that reflects an online file I simply download it instead of creating a Bitmap and then creating the file (this was done because at some point I needed the Bitmap but now I do it the other way around). The problems persist thought and are exactly the same:

I/ActivityManager(18852): Starting
activity: Intent {
act=android.intent.action.VIEW
dat=/sdcard/Android/data/com.myapp/files/image.jpg
typ=image/* flg=0x3800000
cmp=com.motorola.gallery/.ViewImage }
I/ActivityManager(18852): Start proc
com.motorola.gallery:ViewImage for
activity
com.motorola.gallery/.ViewImage:
pid=29187 uid=10017 gids={3003, 1015}
I/dalvikvm(29187): Debugger thread not
active, ignoring DDM send
(t=0x41504e4d l=38)
I/dalvikvm(29187): Debugger thread not
active, ignoring DDM send
(t=0x41504e4d l=64)
I/ActivityManager(18852): Process
com.handcent.nextsms (pid 29174) has died.
I/ViewImage(29187): In View Image
onCreate!
D/AndroidRuntime(29187): Shutting down VM
W/dalvikvm(29187): threadid=3: thread
exiting with uncaught exception
(group=0x4001b170)
E/AndroidRuntime(29187): Uncaught
handler: thread main exiting due to
uncaught exception
E/AndroidRuntime(29187):
java.lang.RuntimeException: Unable to
start activity
ComponentInfo{com.motorola.gallery/com.motorola.gallery.ViewImage}:
java.lang.NullPointerException
E/AndroidRuntime(29187): at
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2496)
E/AndroidRuntime(29187): at
android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2512)
E/AndroidRuntime(29187): at
android.app.ActivityThread.access$2200(ActivityThread.java:119)
E/AndroidRuntime(29187): at
android.app.ActivityThread$H.handleMessage(ActivityThread.java:1863)
E/AndroidRuntime(29187): at
android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime(29187): at
android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime(29187): at
android.app.ActivityThread.main(ActivityThread.java:4363)
E/AndroidRuntime(29187): at
java.lang.reflect.Method.invokeNative(Native
Method)
E/AndroidRuntime(29187): at
java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime(29187): at
com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
E/AndroidRuntime(29187): at
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
E/AndroidRuntime(29187): at
dalvik.system.NativeStart.main(Native Method)
E/AndroidRuntime(29187): Caused by:
java.lang.NullPointerException
E/AndroidRuntime(29187): at
com.motorola.gallery.ImageManager.allImages(ImageManager.java:5621)
E/AndroidRuntime(29187): at
com.motorola.gallery.ImageManager.getSingleImageListByUri(ImageManager.java:5515)
E/AndroidRuntime(29187): at
com.motorola.gallery.ViewImage.onCreate(ViewImage.java:1801)
E/AndroidRuntime(29187): at
android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
E/AndroidRuntime(29187): at
android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2459)
E/AndroidRuntime(29187): ... 11 more

View 3 Replies View Related

Android :: Single Intent To Take Picture / Pick Image From Gallery

Apr 25, 2010

I'm developing an app for Android 2.1 upwards. I want to enable my users to select a profile picture within my app (I'm not using the contacts framework). The ideal solution would be to fire an intent that enables the user to select an image from the gallery, but if an appropriate image is not available then use the camera to take a picture (or vice-versa i.e. allow user to take picture but if they know they already have a suitable image already, let them drop into the gallery and pick said image). Currently I can do one or the other but not both.

If I go directly into camera mode using MediaStore.ACTION_IMAGE_CAPTURE then there is no option to drop into the gallery. If I go directly to the gallery using Intent.ACTION_PICK then I can pick an image but if I click the camera button (in top right hand corner of gallery) then a new camera intent is fired. So, any picture that is taken is not returned directly to my application. (Sure you can press the back button to drop back into the gallery and select image from there but this is an extra unnecessary step and is not at all intuitive). So is there a way to combine both or am I going to have to offer a menu to do one or the other from within my application? Seems like it would be a common use case, surely I'm missing something?

View 1 Replies View Related

Android :: View Image In Action View Intent?

Nov 16, 2009

I'd like to show a png or jpg I downloaded from the next in an image viewer intent, but can't get it to work.

Bitmap bmp = getImageBitmap(jpg);
String path = getFilesDir().getAbsolutePath() + "/test.png";
File file = new File(path);
FileOutputStream fos = new FileOutputStream(file);
bmp.compress( CompressFormat.PNG, 100, fos );
fos.close();
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(path)), "image/png");
startActivity(intent);

I know the bitmap is downloaded ok (use the same routine for supplying it my ImageView instances elsewhere in my app) - I think it wrote to file ok, I can see it on disk and the file size is correct. The intent is launched but an exception is thrown: then the new activity just sits there, blank. How does this work?

View 1 Replies View Related

Android :: Sending Email In Android Using JavaMail API Without Using Default Android App - Builtin Email Application

Jan 7, 2010

I am trying to create a mail sending application in android, If I use

`Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND`);

This will launch the builtin application of android, I'm trying to send the mail on button click directly without using this app.

View 12 Replies View Related

Android :: Reverse Image Load Order - Loading Animation In A Image View While The Real Image Is Loaded?

Jul 21, 2010

I use http://stackoverflow.com/questions/541966/android-how-do-i-do-a-lazy-load-of-images-in-listview/3068012#3068012 to load images in a ListView and a GridView. It works but the images are loaded form bpttom to top. How to fix that?

Bonus Question: Can I use a loading animation in a image view while the real image is loaded? Right now it's just a default image.

View 1 Replies View Related

Android :: What Is Radio Image / Flash Image / System Image?

Dec 7, 2009

It will be helpful if any one can help me out in understanding the concept of radio,flash,system image in android mobile device. Also why are they required? and what is their role in Device?

View 2 Replies View Related

Android :: Need App For Viewing MS Office

Mar 23, 2010

Do you guys know the best apps to view MS office other than Office Suite?

View 10 Replies View Related

Android :: Viewing Contacts By Last Name?

Sep 10, 2010

I jsut recently noticed that Google upgraded the web based contact list with the ability to view by the last name.Is there a way to do this with my Android phone?

View 3 Replies View Related

Android :: Remote Viewing Of Web Cam

Oct 1, 2010

I have a web cam hooked up to my PC at home.Looking for an app where I can monitor it from my phone when I am away.

View 15 Replies View Related

Android :: Viewing My Contacts

Aug 24, 2010

I just got an HTC desire and so far its much better than my iphone. I'm just stuck on one think, how do I view my contacts? I've gone through all of my apps and it appears that the only way is to create a new message and then add a contact to there.

View 1 Replies View Related

Android :: Teathering My Htc To Pc And Viewing Net

Sep 6, 2010

to try to cut a long story short got a bit mifffed at using the hero to view the net and bought a broken laptop (now fixed with new operating system installed and new ram) to use at work so i can use the net in large screen after using for a few days i note the its using up a lot of mb of my data to use the net with the laptop is there a way to setup a firefox just to view the text with out the ads and pics and still have full function of the net

View 4 Replies View Related

Android :: Need App For Viewing Webcam

Jul 3, 2010

Im looking for an app that will allow me to view my webcam at work for security purposes. Once I close up the office I would like to be able to view my webcam on my phone. Would also be nice if it could be activated by motion.

View 3 Replies View Related

Android :: Viewing Set Of Images

Sep 26, 2010

My app downloads a set of images from a website but I need to figure out the how to display them to the user. How can I display these to the user if they are coming from a ListView?Also, they'll need to be able to get back to the ListView.

View 1 Replies View Related

Android :: Viewing Attachments In Gmail

Nov 27, 2009

its possible to view attachments in gmail popmail? it says theres an attachment but wont let me view it unless i use the browser..

View 5 Replies View Related

Android :: Want App For Viewing Hulu Videos

May 22, 2010

New to the Droid Eris. Looking for an app so that I may view movies and videos from sites like Hulu and such.

View 5 Replies View Related







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