调用url错误意图找不到符号

时间:2015-01-05 12:32:32

标签: android

我遇到的问题是无法调用网址。

oncreate中的Mi代码

 protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Intent intent = new Intent(Intent.ACTION_VIEW);

        intent.setData(Uri.parse("http://www.google.com"));

        startActivity(intent);
    }

enter image description here

我纠正了错误,但得到了同样的问题

2 个答案:

答案 0 :(得分:0)

你在变量名中有一个错误的错字,试试这个

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Intent intent = new Intent(Intent.ACTION_VIEW);

    intent.setData(Uri.parse("http://www.google.com"));

    startActivity(intent);
}

您也可以尝试这个较短的版本

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com")));
}

答案 1 :(得分:0)

执行:

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(intent);

看看它是否有帮助。