安卓中点击某个按钮跳转到指定网页

         在安卓代码中有时候会要求点击某个按钮跳转到指定网页,整理如下:

       

                Button  btn = (Button)findViewById(R.id.button);//按钮id
                btn.setOnClickListener(new View.OnClickListener(){ //按钮监听事件
                    public void onClick(View v){
                        Uri uri = Uri.parse("http://baidu.com");  //指定网址
                        Intent it = new Intent(Intent.ACTION_VIEW,uri);
                        startActivity(it)
}
});
 
  


你可能感兴趣的:(android基础)