Re: [android-developers] Re: Starting An Android App From An Url

2012-09-25 Thread Jignesh Patel
Hi Conrad, You can launch Adobe Connect mobile through connectpro:// as URL. But you shall not try typing this URL to browser itself. As it consider as search key word and go to search engine page. You can use it as URL set to any anchor (link) on any html page and when you click that link i

Re: [android-developers] Re: Starting An Android App From An Url

2012-09-25 Thread Conrad Ciobanica
> > Hello All, >> > Did you find any intent to launch Adobe Connect Mobile? I need to start if from an URL. I suspect that a custom URL should be used and pass via intents some conference settings. Thanks a lot, Conrad -- You received this message because you are subscribed to the Google Gr

Re: [android-developers] Re: Starting An Android App From An Url

2012-09-05 Thread Jignesh Patel
Hi Dianne, Sorry for responding to very old post. I have one app Adobe Connect Mobile ( https://play.google.com/store/apps/details?id=air.com.adobe.connectpro&feature=search_result#?t=W251bGwsMSwxLDEsImFpci5jb20uYWRvYmUuY29ubmVjdHBybyJd) which I want to launch through web link. I have checked t

Re: [android-developers] Re: Starting An Android App From An Url

2011-05-02 Thread Dianne Hackborn
This has been used in Android since 1.0 by apps like Market, YouTube, and Gmail to allow the user to select to go to the app which clicking a link from the browser. The sample code I showed is the actual code in Market. This definitely does work, on every version of Android. Re: using custom sch

[android-developers] Re: Starting An Android App From An Url

2011-05-02 Thread andrew
Hi Diane, I just wanted to confirm what you are saying, as I have read this can be done, then fought with it not working (has this been "fixed" to not work in newer releases of the Android SDK??), and after searching for solutions I see lots of posts from other people trying to do this, that is: d

Re: [android-developers] Re: Starting An Android App From An Url

2011-03-27 Thread Mark Murphy
On Sun, Mar 27, 2011 at 11:00 AM, Kostya Vasilyev wrote: > Since it's your own site, just use its name to filter for > "http://perumal.subramaniam.com/myapp"; or whatever. As a bonus, you can even put a real Web page there, with instructions to the user to go download your app. Barcode Scanner wo

Re: [android-developers] Re: Starting An Android App From An Url

2011-03-27 Thread Kostya Vasilyev
27.03.2011 18:53, perumal subramaniam пишет: As I am testing with my own app and my own webpage, I think I need not stick to using universal namespace. ( I hope i am correct but this method works!) You still do. If someone else uses "myownapp://" (which is not really far-fetched), your app

Re: [android-developers] Re: Starting An Android App From An Url

2011-03-27 Thread perumal subramaniam
>> >> >> *From:* Dianne Hackborn [mailto:hack...@android.com] >> *Sent:* Friday, March 25, 2011 10:02 PM >> *To:* android-developers@googlegroups.com >> *Cc:* Lutz Bendlin; perumal316 >> *Subject:* Re: [android-developers] Re: Starting An Android A

Re: [android-developers] Re: Starting An Android App From An Url

2011-03-26 Thread Dianne Hackborn
> *Sent:* Friday, March 25, 2011 10:02 PM > *To:* android-developers@googlegroups.com > *Cc:* Lutz Bendlin; perumal316 > *Subject:* Re: [android-developers] Re: Starting An Android App From An > Url > > > > Yes it does. The application uses the tags I showed

Re: [android-developers] Re: Starting An Android App From An Url

2011-03-25 Thread Dianne Hackborn
Yes it does. The application uses the tags I showed to indicate it can handle a particular (or set of) http: URIs. Nothing gives you direct access to any application on the phone. The application must at least opt in to being launched from the browser by supporting the BROWSABLE category for the

Re: [android-developers] Re: Starting An Android App From An Url

2011-03-25 Thread lbendlin
but http:// doesn't give you access to the local applications on the phone. That was the OP's question (as I understand it). Do you need to do a binding from the webview back to the activity, and then a local translator to start the intent? -- You received this message because you are subscri

Re: [android-developers] Re: Starting An Android App From An Url

2011-03-25 Thread Dianne Hackborn
Um I don't mind. Call me Dianne, Hackborn, hackbod, they all work. As far as the scheme -- the example specifies "http" and "https". Please DO NOT use your own scheme. That is "yourapplication://doaction?parameters" is wrong. Schemes are a *universal* namespace. There are RFCs describing the

[android-developers] Re: Starting An Android App From An Url

2011-03-25 Thread lbendlin
Perumal, in western culture it is not polite to address someone just by last name. In the future please address her as Dianne. the format is yourapplication://doaction?parameters -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post t

[android-developers] Re: Starting An Android App From An Url

2011-03-24 Thread perumal316
Hi Hackborn, For the example you have specified what will be the URL be? Is it something like market://? Regards, Perumal On Mar 25, 1:46 pm, Dianne Hackborn wrote: > Yes, for example here is the declaration in the activity of Market that > handles the user clicking on an Android Market UR