Thursday, 4 January 2018

How to load website in activity

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); 
    }

No comments:

Post a Comment