Android :: How To Launch Intent To Pick Image From SD Card?
Jun 13, 2009Can you please tell me how can I launch the intent to pick image from SD card?
View 6 RepliesCan you please tell me how can I launch the intent to pick image from SD card?
View 6 RepliesI'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?
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 RelatedI 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);
I am trying to locate the intent to load the call log view , does android platform provide that out of the box? the functionality that i am looking is just like picking a contact from address book , you can do that by using intent.ACTION_PICK and using the people content URI
Intent intent = new Intent(Intent.ACTION_PICK, People.CONTENT_URI);
It 'll show all the contacts of the system and on selecting one it 'll return the data URI of that particular contact by using callback if you start it by using startActivityForResult. could we do the same with call log as well is their any intent for that?
Trying to do something fairly simple, select from a picklist of tracks.
I have some code that in theory works, and this is as follows;
CODE:................
This works perfectly on the emulator, however when running on my Galaxy S, I get the following exception.
CODE:......
I'm not really sure, nor can I seem to find how to correct the issue.
In application I'm developing i need to open some standard dialog to browse files on the phone. After picking one file I'll attach it to the message. In Android Dev Guide i found such way to solve my problem...
But in that dialog, when I'm trying to pick sound file, i start to playback. And one more problem - using that dialog i can see only gallery and music tracks.
Is there any other way to display such kind of dialog? Or maybe stop to playback the music?
I have seen a lot of posts about this, and it seems like the code below should work. I have created an SD Card image and added it to the emulator (and that works fine).
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType("image/*");
//intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(intent, 1);
It does launch and allow selection of images, but when I click on an image, everything exits and the emulator returns to the home screen, not back to my app. My onActivityResult is never called either. What am I missing?
I can't find any intent which opens the camera. The closest I've found is ACTION_CAMERA_BUTTON but that breaks if the phone has no hardware button for the camera.
View 3 Replies View RelatedMy Google-Fu is failing this Android newbie today.Does anybody know of a good example showing how to launch an intent from a PreferenceScreen? I want to show a custom LinearLayout that allows me to set some semi-complex preferences.
View 2 Replies View RelatedWhat is the recommended way to launch the messaging app (for sending an MMS message) via an intent? The following code works on my HTC Magic ... code..
... but it first launches the Resolver activity (com.android.internal.app.ResolverActivity), prompting the user to select the appropriate app (Email, Gmail, Messaging, Picasa). The user has to select Messaging before proceeding.
The only way I've found to bypass the resolver is to explicity set the desired component on the intent before starting the activity as follows:
intent.setClassName("com.android.mms", "com.android.mms.ui.ComposeMessageActivity");
However, I'm guessing this approach will not work on devices that have a customised UI, like the HTC Hero. Can someone confirm/deny?
I'm also struggling to find official documentation for the "address" and "sms_body" fields that can be supplied as extra data as per the above example. Is it expected that these will be supported by the default messaging app in future SDK versions and in customised UIs (like HTC's Sense UI)?
I have a question about an intent...
I try to launch the sms app...code...
so, you can see that I put too much things in my intent, but that's because I don't know how I can do...
Is there any URI which can point to the GMAIL App in android and help me launch it?
View 2 Replies View RelatedCan you please tell me how can I start an intent to launcher the IM application on android?
View 4 Replies View RelatedI want to know to launch a satellite application using Intent, i knew how to launch the map application using Intent, but i want to display satellite view rather than map view, my code is uri = Uri.parse("geo:0,0?q=" + VALUE_baraddress1[0] + ", "
+ VALUE_baraddress2[0] + ", "
+ VALUE_baraddress3[0]);
Log.v(TAG, VALUE_baraddress1[0] + ", "
+ VALUE_baraddress2[0] + ", "
+ VALUE_baraddress3[0]);
startActivity(new Intent(Intent.ACTION_VIEW, uri));
There's seemingly no way to launch the calendar app in a generic way. I've written a widget which allows you to launch the calendar. I use the following Intent:
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setClassName("com.android.calendar", "com.android.calendar.LaunchActivity"); startActivity(i);
However, this doesn't work on the Hero because HTC has apparently replaced the calendar in their Sense UI. I'm looking for a "standard" way to reach the calendar. I'd like for something like this to be standardized:
Intent i = new Intent(Intent.ACTION_VIEW); i.setType("text/calendar"); startActivity(i);
Does anyone think it would be worth trying to add this to the source? It seems like there is a missing chunk of standards around calendar events and/or iCal / vCal support. Does anyone know why?
I have found various topics here and elsewhere on creating an intent for sending e-mail and that seems to be pretty straightforward. I'm looking for an intent to just launch any e-mail client the user might have.
Here is the code I've seen for sending an e-mail (posted just for reference, this doesn't serve my needs as I don't want to send a new message):code...
The code above works but isn't flexible in that a user might not be using Gmail but the other built-in e-mail application or a 3rd party e-mail app. I'm looking for an intent that would bring up the chooser in this case so the user can decide which app to launch to read e-mail.
Does anyone know how to accomplish this?
I'm trying to figure out how to launch an activity in my app from a custom URI such as myapp://myuriactivity I've read a lot about the intent and intent filters in the android references and also read several examples, but for some reason I can't get my simple test to work. Below is my manifest file, can anyone tell me what I'm doing wrong? With the below file, if I open the browser and try to navigate to http://org.test.launchtest it just says the page doesn't exist. Shouldn't this work?
View 1 Replies View RelatedThis is what I would like to do: => IF WiFi is enabled AND active, launch an intent (in fact it's a WebView that gets its content=>the instructions of my app on the web) => IF NOT, then I would launch another intent so that I don't show a WebView with "Web page not available ... The Web page at http://www.mywebsite.com might be temporarily down or it may have moved ..."
I tought initially to use
if(wifi.isWifiEnabled())
but that does not say if the Wifi connection is ACTIVE or not. It says only that the user has turned the switch on. The device may or may not be connected... Is this correct ?
Then I tried to use :........................
I have developed a very simple widget that was meant to interact with the user via an ImageButton. What I am trying to do now is as follows. When a user taps the button (after adding the widget to their home screen), I want the phone to dial a certain telephone number.
View 2 Replies View RelatedI'm launching a webbrowser via an intent, which allows my app user to login to Google Docs in a 2-legged oauth dance. This works fine, and the browser callback comes to my app with the right authentication string.
I just want to be able to kill that browser window once we are done - having it sitting there is confusing and messy.
How can I kill a browser window I started up?
Is there any way to launch an activity w/ Intents (in this case the Browser) in the background, and then bring it to the foreground using a service or activity?
I know it's possible to bring apps to the foreground by launching an intent with FLAG_ACTIVITY_BROUGHT_TO_FRONT
But is it possible to initially launch the activity in the background?
what is intent action name(e.g. action name "android.media.action.IMAGE_CAPTURE" for launching camera appl) to launch the native map appl Is there intent available(documented or undocumented since above intent of capturing image is undocumented ) for launching maps appl?
I know one for launching maps for driving direction "this.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps? f=d&saddr=37.4,-121.9"+ "&daddr=Bellevue, WA&hl=en")));" but this goes to driving direction page of maps appl.
is there any way to launch maps appl which will open maps home page?
I'm using Wikitude API 1.1 as an AR viewer in my application. The problem with Wikitude, if I haven't launched the actual Wikitude application since the phone's bootup, I will get a NullPointerException everytime I start my own application.
So I figure if I can start my app first and them check if Wikitude is installed and or running. If it's not installed, go to market n download. If it's not running, then we should run it straight to background so that my app doesn't loose its focuscode...
The part I block commented is the intent to start Wikitude. But I always failed in restricting Wikitude to background. Any help?
I am facing a problem with a clock widget i made. I want the user to touch the clock and launch the clock app on the phone. this is the code...
I made the above so the when i touch the clock opens the alarm settings. But is not universal.
I found out that on droids with 2.2 does not work. There must be a better solution than creating an if statement for every android phone flavor i the world. Plus i don not know the package names for all.
I am trying to a menu item to launch the Send intent. This is what I did, I see the menu item
but i don't see send intent launch when i select the menu item. code...
The first activity in my app needs to load a small amount of data from a text file. Two strings and an integer. Once I load the data, I want to use one of the strings to create an intent, that will launch the next activity.
View 2 Replies View RelatedI am trying to load BROWSER VIEW intent in android within onTouchEvent. Basically i have create a live wallpaper and if i click on it then i want to open BROWSER VIEW intent with a specified uri. i have tried following code inside onTouchEvent Uri uri = Uri.parse("http://www.google.com"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent); but i am getting following error I am trying to load BROWSER VIEW intent in android within onTouchEvent. Basically i have create a live wallpaper and if i click on it then i want to open BROWSER VIEW intent with a specified uri. Code...
View 1 Replies View RelatedI would like to launch the Android Email application with a URI similar to the contacts uri. Is this possible?
View 1 Replies View RelatedI am trying to launch an activity by specifying only its action(custom) defined in its intent filter from an activity in other application. The activity to be launched is the main activity of its application thus have android.intent.action.MAIN & android.intent.category.LAUNCHER set as action and category in its intent filter. Now according to android doc on Intent and Intent Filter, i do not need to specify DEFAULT category at all in this case. But doing the same i am i am unable to launch the activity.
LogCat says, Activity could not be found...
Am i misinterpreting the text or is there something else missing...?
Code, used for calling the activity
CODE:.............
Definition of Activity being called in the manifest file
COE:....................