Open top menu

           How to Open Url In Aandroid Web Browser?

try this code...



TextView compnay_info=(TextView)findViewById(R.id.developedby);
compnay_info.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://androidbeginnerpoint.blogspot.in/"));
startActivity(intent);  

}
});

0 comments