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

前端之家收集整理的这篇文章主要介绍了如何在Android中点击按钮时重定向到特定的URL?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在点击按钮时重定向到特定的URL

解决方法

您可以启动“查看”活动,该活动将是给定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);
      }
    });

  }

}
原文链接:https://www.f2er.com/android/316184.html

猜你在找的Android相关文章