Cuando giro mi pantalla, WebView recarga toda la página. No puedo tener esto porque parte de mi contenido contiene material dinámico / aleatorio. Actualmente, cuando se gira la pantalla, se vuelve a cargar la URL original del método loadUrl ().
¿Alguna idea de lo que está mal con mi código?
MainActivity.java
package com.mark.myapp;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.Menu;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class MainActivity extends Activity {
WebView web;
String webURL = "http://www.google.co.uk/";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState != null)
((WebView)findViewById(R.id.web)).restoreState(savedInstanceState);
web = (WebView) findViewById(R.id.web);
web.getSettings().setJavaScriptEnabled(true);
web.loadUrl(webURL);
web.setPadding(0, 0, 0, 0);
web.getSettings().setLoadWithOverviewMode(true);
web.getSettings().setUseWideViewPort(true);
web.getSettings().setSupportZoom(true);
web.getSettings().setBuiltInZoomControls(true);
web.setWebViewClient(new HelloWebViewClient());
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
private class HelloWebViewClient extends WebViewClient {
public boolean shouldOverrideUrlLoading(WebView web, String url) {
web.loadUrl(url);
return true;
}
}
public boolean onKeyDown(int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_BACK) && web.canGoBack()) {
web.goBack();
return true;
}
return super.onKeyDown(keyCode, event);
}
}
AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mark.myapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
java
android
android-webview
marca
fuente
fuente
Respuestas:
Creo que el principal problema es que llamas a web.loadUrl (webURL); también cuando se guardaInstanceState! = null
EDITAR
Tratar:
if (savedInstanceState == null) { web.loadUrl(webURL); }
EDIT2 : también necesita la anulación onSaveInstanceState y onRestoreInstanceState.
@Override protected void onSaveInstanceState(Bundle outState ) { super.onSaveInstanceState(outState); web.saveState(outState); } @Override protected void onRestoreInstanceState(Bundle savedInstanceState) { super.onRestoreInstanceState(savedInstanceState); web.restoreState(savedInstanceState); }
Nota: también agregue su AndroidManifest.xml en su Actividad android: configChanges = "Orientación | ScreenSize" Gracias
fuente
No se necesita codificación Java. use esto en su archivo de manifiesto.
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
me gusta:
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="com.Example.WebviewSample.webviewsample" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>
fuente
en etiqueta (manifiesto)
android:configChanges="orientation|screenSize"
fuente
onConfigurationChanged
método, ya que no se agrega ninguna funcionalidad personalizada. Simplemente hacer el cambio en el archivo de manifiesto funcionó para mí.orientation|screenSize
Agregar un
android:configChanges="orientation|screenSize"
manifiesto funciona para mí<activity android:name="com.example.HelloWorld.WebActivity" android:label="@string/title_activity_web" android:configChanges="orientation|screenSize" > </activity>
fuente
No creo que esto funcione más. En mi caso, restaurar el estado usando
WebView.restore(Bundle savedInstanceState)
aún activa una recarga de la URL.En cuanto a los documentos para
restoreState()
que usted verá que dice:y
Apoyos a @ e4c5 por señalarme en la dirección correcta en su respuesta
Y, por supuesto, el curso de acción extremo sería evitar que los cambios de orientación desencadenen la destrucción / creación de actividades. La documentación sobre cómo hacer esto está aquí
fuente
Agrega este código en Manifest
<activity ... android:configChanges="orientation|screenSize">
fuente
Anular el
onConfigChange
método para evitar volver a cargar datos al cambiar de orientaciónsobre su actividad en el
AndroidMainfest
archivo.android:configChanges="orientation|keyboardHidden"
y tenerlos también en la configuración de WebView
webview.getSettings().setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK); webview.setLayerType(View.LAYER_TYPE_SOFTWARE, null); webview.loadUrl("Your URL To Load");
fuente
Pruebe esto en su archivo de manifiesto:
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
fuente
Coloque esto en la actividad del archivo Manifest.xml:
android:configChanges="orientation|screenSize"
Aquí hay un ejemplo:
<activity android:name=".MainActivity" android:label="@string/app_name" android:theme="@style/AppTheme.NoActionBar" android:configChanges="orientation|screenSize"> <intent-filter> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity>
fuente
Como se cita aquí ,
ajuste
android:configChanges="orientation|screenSize"
de su actividad resolverá este problema.Además, tome nota de lo siguiente
fuente
Esta solución me funciona bien:
(1) En AndroidManifest.xml agregue esta línea android: configChanges = "keyboard | keyboardHidden | Orientación | screenLayout | uiMode | screenSize | smallestScreenSize"
Así (y como las respuestas anteriores)
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" android:label="@string/app_name" android:theme="@style/AppTheme.NoActionBar"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>
(2) Luego en MainActivity.java verifique SavedInstanceState
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mainContext = getApplicationContext(); ---- myWebView = (WebView) findViewById(R.id.webView); prepareWebView(); myWebView.addJavascriptInterface(myJavaScriptInterface, "WEB2Android"); if (savedInstanceState == null) { myWebView.post(new Runnable() { @Override public void run() { myWebView.loadUrl("http://www.appbiz.ro/foto_konta"); } }); } ---- }
(3) y luego:
@Override public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); } @Override protected void onSaveInstanceState(Bundle outState ) { super.onSaveInstanceState(outState); myWebView.saveState(outState); } @Override protected void onRestoreInstanceState(Bundle savedInstanceState) { super.onRestoreInstanceState(savedInstanceState); myWebView.restoreState(savedInstanceState); }
fuente
Agregue esto en Androidmanifest.xml:
<activity android:name=".MyActivity" android:configChanges="orientation|screenSize|screenLayout|keyboardHidden">
Ahora, cuando una de estas configuraciones cambia,
MyActivity
no se reinicia. En cambio,MyActivity
recibe una llamada aonConfigurationChanged()
.Agrega esto:
@Override public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); // Checks the orientation of the screen if (newConfig.orientation == Configuration.ORIENTATION_LANDSCAPE) { Toast.makeText(this, "landscape", Toast.LENGTH_SHORT).show(); } else if (newConfig.orientation == Configuration.ORIENTATION_PORTRAIT) { Toast.makeText(this, "portrait", Toast.LENGTH_SHORT).show(); } }
fuente