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 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 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