nach dem Implementieren eines WebView-Clients meine Anwendung weiterhin empfangen "Leider" Meine App "wurde gestoppt" nach dem Ausführen der App. Das ist mein maniefestMeine Anwendung erhält weiterhin "Leider" Meine App "hat nach dem Ausführen der App"
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="amapps.com.uhss" >
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="UHS Sword And Shield"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="UHS Sword and Shield" >
android:hardwareAccelerated="false"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
Wie Sie Ich habe bereits die Internet-Berechtigungen
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class MainActivity extends Activity {
private WebView mWebView = (WebView) findViewById(R.id.activity_main_webview);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(amapps.com.uhss.R.layout.activity_main);
WebView mWebView = (WebView) findViewById(R.id.activity_main_webview);
mWebView.setWebViewClient(new WebViewClient());
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(false);
mWebView.loadUrl("http://uhsswordandshield.com/");
mWebView.getSettings().setSupportMultipleWindows(true);
}
implementiert sehen
So könnte jemand mir bitte erklären, was mit meinem Manifest oder Haupttätigkeit ist falsch. Meine App wurde ausgeführt, bevor ich einen WebView-Client in meine App implementierte, um die Links in meiner App zu öffnen. Vielen Dank!
Fügen Sie Ihren Logcat hinzu. – KDeogharkar
Warum Sie findview zweimal Fehlerprotokoll einfügen und private Webview entfernen ....? –
bitte markieren Sie die nützliche Antwort als Antwort. –