Hello
This is very interesting. Do I need to have the source code of the
Camera app in order to do this? Or is there some way to make it use my
menu rather than the one already in Camera?

On Aug 10, 7:56 pm, Roman <roman.baumgaert...@t-mobile.com> wrote:
> You are already giving the answer ... In your application you add the
> "Upload pic" button in your menu. When you implement the
> onOptionsItemSelect method trigger from there your new activity which
> is handling the uploading of yourpicture.
>
> Something like
>
> public boolean onOptionsItemSelected(MenuItem item) {
>         switch (item.getItemId()) {
>             case R.id.uploadPic:
>                 <Start your new Activity>
>                 return true;
>             case ......
>         }
>         return false;
>
> }
>
> On Aug 10, 12:17 pm, moazzamk <moazz...@gmail.com> wrote:
>
>
>
> > Hi Guys,
>
> > After apictureis taken in Android, you get a menu to save it, etc.
> > Is it possible to add a menu item in it saying "Upload pic to xyz.com"
> > and then have it launch an activity of my app ?
>
> > Thanks,
>
> > Moazzam
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to