2010-02-10 87 views

回答

16

点击可以启动“视图”的活动,这将是浏览器获得一个网址:

public class HelloWorld extends Activity { 

    @Override 
    public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 

    // Assuming you are using xml layout 
    Button button = (Button)findViewById(R.id.Button01); 

    button.setOnClickListener(new OnClickListener() { 
     public void onClick(View arg0) { 
     Intent viewIntent = 
      new Intent("android.intent.action.VIEW", 
      Uri.parse("http://www.stackoverflow.com/")); 
      startActivity(viewIntent); 
     } 
    }); 

    } 

} 
+0

非常感谢你的工作 – deepthi 2010-02-10 11:59:10

相关问题