如何在单击android中的按钮时重定向到特定的URL?

时间:2010-02-10 11:31:26

标签: android url-redirection android-button

我想在Android App中点击Button时将用户重定向到特定网址。

1 个答案:

答案 0 :(得分:20)

您可以启动“查看”活动,该活动将是给定URL的浏览器:

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

  }

}