[android-developers] Re: Launch application from url

2010-11-19 Thread Tejas
This isn't working for me. I have a static html page with the element as mentioned above by Ryan. I'm not sure if this fires the intent. How will the browser understand / interpret this strange url ? If this is working for anyone, I would like to know. Even I'm looking to launch any application

[android-developers] Re: Launch application from url

2010-09-27 Thread AnasSamara
Thanks for relpay, but from where can I get the passed data?? > > On Sep 25, 8:20 am, Ryan Mattison wrote: > > > > >     > >     > > > > > > > > On Sep 24, 9:50 am, AnasSamara wrote:> Hello All > > > Any one knows how to launch certain application in my android from URL > > > send via email

[android-developers] Re: Launch application from url

2010-09-26 Thread AnasSamara
thanks On Sep 25, 8:20 am, Ryan Mattison wrote: > >     >     > > > > > On Sep 24, 9:50 am, AnasSamara wrote:> Hello All > > Any one knows how to launch certain application in my android from URL > > send via email or SMS. > > I mean if I have an SMS: > > > Http://GOOGLE.COM > > then I am a

[android-developers] Re: Launch application from url

2010-09-24 Thread Ryan Mattison
On Sep 24, 9:50 am, AnasSamara wrote: > Hello All > Any one knows how to launch certain application in my android from URL > send via email or SMS. > I mean if I have an SMS: > > Http://GOOGLE.COM > then I am able to click on it so the browser opened with that URL. > > the same th

[android-developers] Re: Launch application or service from html link?

2010-08-04 Thread Shrenik Vikam
How To add parameters to the same URL to pass to Intent. On Aug 3, 2:29 pm, Mark Murphy wrote: > On Tue, Aug 3, 2010 at 4:36 AM, Shrenik Vikam wrote: > > Can I get  the detailed description of how to launch application from > > web link or > >  A trusted link where I can get the steps to do the

Re: [android-developers] Re: Launch application or service from html link?

2010-08-03 Thread rajesh rao
hi friends if you want earn more money? then don't waste your time just copy and the address given below.* http://www.AWSurveys.com/HomeMain.cfm?RefID=raothetechy* -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

[android-developers] Re: Launch application or service from html link?

2010-08-03 Thread Matty
I would make up a scheme... and you can use an Intent-Filter to grab any request to that scheme. use an url like shrenikvikam://some.data.for.your.activity Then if your Activity listens for that scheme, a web link should start your activity. see http://developer.android.com/guide/topics/intents

Re: [android-developers] Re: Launch application or service from html link?

2010-08-03 Thread Mark Murphy
On Tue, Aug 3, 2010 at 5:56 AM, Shrenik Vikam wrote: > Any pointer , how can  I get your book in Pune , India ? http://commonsware.com/warescription -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy

[android-developers] Re: Launch application or service from html link?

2010-08-03 Thread Shrenik Vikam
Thanks , Any pointer , how can I get your book in Pune , India ? On Aug 3, 2:29 pm, Mark Murphy wrote: > On Tue, Aug 3, 2010 at 4:36 AM, Shrenik Vikam wrote: > > Can I get  the detailed description of how to launch application from > > web link or > >  A trusted link where I can get the steps t

[android-developers] Re: Launch application or service from html link?

2010-07-30 Thread Shrenik Vikam
is it really working ? On Jun 19, 7:24 pm, Mark Murphy wrote: > On Fri, Jun 18, 2010 at 9:18 PM, Dianne Hackborn wrote: > > You can actually build a URI to launch pretty much any intent; the browser > > always adds the BROWSABLE category, though, so any activity receiving it > > must have specif

[android-developers] Re: Launch Application

2009-03-13 Thread bklik
Dianne, Thank you for pointing me in that direction! I found just what I was looking for. For those of you reading this thread, here's the code I used to get it working: PackageManager pm = this.getPackageManager(); Intent mainIntent = new Intent(Intent.ACTION_MAIN, null);

[android-developers] Re: Launch Application

2009-03-12 Thread Dianne Hackborn
The is a home screen sample code in the SDK. I would suggest using that that to see how to do things. On Thu, Mar 12, 2009 at 8:45 AM, bklik wrote: > > Update: > > OK, I can get my application to launch another application if I > explicitly type in the package and class names. For example: > >

[android-developers] Re: Launch Application

2009-03-12 Thread bklik
Update: OK, I can get my application to launch another application if I explicitly type in the package and class names. For example: Intent i = new Intent(); i.setClassName("com.android.calculator2", "com.android.calculator2.Calculator"); startActivity(i); Now, how to do find out what the Acti