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....
> 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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to