[android-developers] Return image uri from camera

2009-01-30 Thread Bamboo
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/*"

[android-developers] Re: Access resources from another application

2009-01-28 Thread Bamboo
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

[android-developers] Access resources from another application

2009-01-28 Thread Bamboo
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

[android-developers] Error displaying JPEG image thumbnails

2009-01-22 Thread Bamboo
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

[android-developers] return to activity once call has ended

2009-01-22 Thread Bamboo
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? --~--~-