如何创建一个加载网页的android按钮?

前端之家收集整理的这篇文章主要介绍了如何创建一个加载网页的android按钮? 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我是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

 Intent browserIntent=new Intent(Intent.ACTION_VIEW,Uri.parse("xxxxxxx"));

确保您在顶部导入了android.net.Uri.

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

猜你在找的Android相关文章