我是android应用程序的超级陌生人,我正在尝试创建一个仅在单击时加载网页的应用程序.
但是,我不断收到错误消息:找不到符号变量URL
这是我的MainActivity代码:
package com.example.logger;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void browser1(View view) {
Intent browserIntent=new Intent(Intent.ACTION_VIEW,url.parse("xxxxxxxxxxx"));
startActivity(browserIntent);
}
}
请帮助找出我想念的东西.
最佳答案
应该是Uri,而不是url
原文链接:https://www.f2er.com/android/531345.html Intent browserIntent=new Intent(Intent.ACTION_VIEW,Uri.parse("xxxxxxx"));
确保您在顶部导入了android.net.Uri.