Re: [android-developers] Re: How to pass a web link to a button.

2011-12-15 Thread nisha paghadaL
On Thu, Dec 15, 2011 at 11:33 AM, Narendra Singh Rathore nsr.curi...@gmail.com wrote: On Thu, Dec 15, 2011 at 11:01 AM, rachana govilkar rachana.govil...@gmail.com wrote: Hello all, instead of url i want that button to link another page from my project that is on clicking that

[android-developers] Re: How to pass a web link to a button.

2011-12-14 Thread rachana govilkar
Hello all, instead of url i want that button to link another page from my project that is on clicking that link it will go to some page... so is it possible using Uri.parse()??? plz let me know thanks in advance On Nov 22, 1:00 pm, Klepon.boy klepon.bo...@gmail.com wrote: use an intent

Re: [android-developers] Re: How to pass a web link to a button.

2011-12-14 Thread Narendra Singh Rathore
On Thu, Dec 15, 2011 at 11:01 AM, rachana govilkar rachana.govil...@gmail.com wrote: Hello all, instead of url i want that button to link another page from my project that is on clicking that link it will go to some page... so is it possible using Uri.parse()??? plz let me know

[android-developers] Re: How to pass a web link to a button.

2011-11-22 Thread Klepon.boy
use an intent and put it on your button click listener. ex : Intent iD = new Intent(); iD.setAction(Intent.ACTION_VIEW); iD.setData(Uri.parse(http://www.kaskus.us;)); startActivity(iD); hope it useful for you, and sorry for my english. -- You received this message

[android-developers] Re: How to pass a web link to a button.

2011-11-22 Thread Klepon.boy
use an intent, and put it on ur button ex: Intent iG = new Intent(); iG.setAction(Intent.ACTION_VIEW); iG.setData(android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI); startActivity(iG); On 21 Nov, 21:42, vedika nimje v4v...@gmail.com wrote: Hi all Android Developers. I need ur help.