Wednesday, December 14, 2011

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



On Thu, Dec 15, 2011 at 11:01 AM, rachana govilkar <rachana.govilkar@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....
thanks in advance


So, Rachana, that seems u simply want to change activity, don't U?
For that, u can use intent to start another activity/page like this..

Intent i = new Intent(FirstActivity.this,SecondActivity.class);
startActivity(i);

I hope this will help you.  

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

No comments:

Post a Comment