我对Android编码非常陌生。我想显示一个初始屏幕,直到WebView
完全加载为止,这样用户就不必看到空白屏幕了。我正在使用此代码,但现在它已开始使我的应用程序崩溃。我不知道为什么。
这是我的主要活动代码
package com.example.torkite;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class MainActivity extends AppCompatActivity {
private WebView mywebview;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mywebview = (WebView)findViewById(R.id.webView);
WebSettings webSettings = mywebview.getSettings();
((WebSettings) webSettings).setJavaScriptEnabled(true);
mywebview.setWebViewClient(new WebViewClient(){
@Override
public void onPageFinished(WebView view, String url) {
findViewById(R.id.imageView).setVisibility(View.GONE);
findViewById(R.id.webView).setVisibility(View.VISIBLE);
}
});
mywebview.loadUrl("https://www.google.co.in/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=2ahUKEwjd0OHYw-biAhVBWH0KHYjQB_MQFjAAegQIABAB&url=https%3A%2F%2Ftorkite.tk%2F&usg=AOvVaw3H-XBAkQcYzVDSNO08ruyr");
}
@Override
public void onBackPressed() {
if (mywebview.canGoBack())
{
mywebview.goBack();
}
else {
super.onBackPressed();
}
}
}
这是xml代码
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
android:background="#FFFFFF"
tools:context=".MainActivity">
<ImageView
android:id="@+id/imageView"
android:layout_width="269dp"
android:layout_height="101dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.408"
app:srcCompat="@drawable/splash"
android:visibility="visible" />
<WebView
android:id="@+id/webView"
android:layout_width="0dp"
android:layout_height="0dp"
android:visibility="invisible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
我仅在启动屏幕上使用我的应用程序徽标,并在加载WebView
时使其可见。谁能告诉我为什么这个应用程序崩溃了?