[android-developers] how do i create a donate menu button

2010-10-30 Thread Raziel23x
I am having trouble creating a donate menu button but I am having trouble I tried doing it as a webview but my application is the use of the listview this Donation Menu item is the only item that requires the internet permission everything else is internal workings. [CODE]private static final int

Re: [android-developers] how do i create a donate menu button

2010-10-30 Thread Kumar Bibek
You need to have Internet permission. Instead of using thewebview, you are better off using the Bowser activity for this. On Sat, Oct 30, 2010 at 11:23 PM, Raziel23x wrote: > I am having trouble creating a donate menu button but I am having > trouble > > > I tried doing it as a webview but my a

Re: [android-developers] how do i create a donate menu button

2010-10-30 Thread Mark Murphy
+1 On Sat, Oct 30, 2010 at 11:26 AM, Kumar Bibek wrote: > You need to have Internet permission.  Instead of using thewebview, you are > better off using the Bowser activity for this. > > On Sat, Oct 30, 2010 at 11:23 PM, Raziel23x wrote: >> >> I am having trouble creating a donate menu button bu

Re: [android-developers] how do i create a donate menu button

2010-10-31 Thread Jonas Petersson
An alternative to this is to do my trick: Just create your own donation app and link to it on Market - no need for any permission, just: startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=se.petersson.freebeer"))); Best / Jonas On 10/30/2010 05:27 PM, M