问题:在Webview中加载Mapbox(Android Studio项目)

时间:2019-05-18 21:08:09

标签: android webview android-webview mapbox

我的网站中有一个html文件: http://manizani.ir/hamyar_gas_php/map/map_app.html

我想在我的Android应用程序上显示它。我创建了一个活动,并使用Webview加载了上述网址。但是没有加载任何东西,这表明我只是一个空的活动。

我可以成功加载任何其他网页,但不能加载我的URL。

请帮助我解决它。

非常感谢

activity_map_web.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MapWebActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <WebView
            android:id="@+id/webview_intro"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        </WebView>

    </LinearLayout>

</RelativeLayout>

//////////////文件结尾//////////////////

MapWebActivity.java:

public class MapWebActivity extends AppCompatActivity {

    WebView WV;
    String url = "";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_map_web);

        try {

            WV = (WebView) findViewById(R.id.webview_intro);

            WV.getSettings().setLoadsImagesAutomatically(true);
            WV.getSettings().setJavaScriptEnabled(true);
            WV.setScrollBarStyle(View.SCROLLBARS_INSIDE_OVERLAY);
            WV.getSettings().setBuiltInZoomControls(true);

            WV.getSettings().setDomStorageEnabled(true);
            WV.getSettings().setAppCacheEnabled(true);
            WV.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
            WV.getSettings().setRenderPriority(WebSettings.RenderPriority.HIGH);

            WV.setWebViewClient(new WebViewClient());


                  url="http://manizani.ir/hamyar_gas_php/map/map_app.html";

                WV.loadUrl(url);


        } catch (Exception ex) {
            Toast.makeText(this, ex.toString(), Toast.LENGTH_SHORT).show();
        }
    }
}

1 个答案:

答案 0 :(得分:1)

Mapbox 使用 WebGL,您的设备可能不支持。 网络视图日志:

@if (!user.GotAccessToken("someToken")) 
{
   <textarea class="testClass" asp-for="testId" readonly>@Model.Id</textarea>
}
else
{
   <textarea class="testClass" asp-for="testId">@Model.Id</textarea>
}

更多信息请访问 here