Is it possible to call the native camera from an activity and return
an image uri of the photo that has been taken?
There is something very similar which works for the gallery and I was
hoping that there was a similar camera implementation..
Intent intent = new Intent();
intent.setType("image/*"
Sorry, I don't think I explained very clearly, the activity that I am
extending from resides within a different application.
So I want to access the resources from that application as well. Give
me a shout if that is still unclear
On Jan 28, 7:19 pm, Mark Murphy wrote:
> Bamboo wrot
I have created a subclass of Activity, 'CustomActivity', that
overrides the onCreateOptionsMenu and onOptionsItemSelected methods.
In a couple of other applications I have extended this subclass to
provider a common menu for each activity. Is it still possible to
access the resources from this Su
I'm currently having problems displaying camera images as thumbnails.
I use the following code when I am taking the camera photo...
String filename = timeStampFormat.format(new Date());
ContentValues values = new ContentValues();
values.put(Media.TITLE, filename);
values.put(Media.DESCRIPTION, "n
I am currently calling the dialer from within my activity using the
following code
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.withAppendedPath(Phones.CONTENT_URI, contactId));
startActivity(intent);
is it possible to return to my activity once the call has ended?
--~--~-
5 matches
Mail list logo