我尝试使用WebView在我的应用程序中打开Instagram页面(标签页面),但是它不起作用,我也不知道为什么。这是我应用程序的重要组成部分,您能帮我吗,这是我使用的代码:
<WebView
android:id="@+id/instaWebView"
android:layout_width="395dp"
android:layout_height="385dp"
android:layout_marginTop="28dp"
app:layout_constraintTop_toBottomOf="@+id/instaTV"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="8dp" />
instaWebView = (WebView) findViewById(R.id.instaWebView);
instaWebView.setWebViewClient(new WebViewClient());
instaWebView.loadUrl(
"https://www.instagram.com/explore/tags//?hl=en");
我的代码如下所示: