Hi All,
See the code below to load a website
public void HUP(View v)
{
Intent intent=new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.javatpoint.com"));
startActivity(intent);
}
See the code below to load a website
public void HUP(View v)
{
Intent intent=new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.javatpoint.com"));
startActivity(intent);
}
No comments:
Post a Comment