6
I created my application via WebView
, but when I rotate the screen the site gives refresh, or is back to the login, my code:
Mainactivity:
package com.sirseni.simpleandroidwebviewexample;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView myWebView = (WebView) findViewById(R.id.myWebView);
myWebView.loadUrl("http://meulink.com/");
myWebView.setWebViewClient(new MyWebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return false;
}
});
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
}
// Use When the user clicks a link from a web page in your WebView
private class MyWebViewClient extends WebViewClient {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (Uri.parse(url).getHost().equals("http://meulink.com/")) {
return false;
}
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(intent);
return true;
}
}
}
Main_activity:
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/myWebView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
I’m very new, in which case I copy these scripts and replace mine?
– Everton Gouveia
@Evertongouveia edited the question and insert a link with a file to adapt to your code. See: https://gist.github.com/cleidimarviana/c269a626f92cefa15c262a6de271d62b
– viana
would you be able to block the rotation? with my code?
– Everton Gouveia
@Evertongouveia has yes: https://answall.com/a/99115/35406
– viana
@Evertongouveia managed to solve?! Any more doubts?
– viana
I’m trying here #Vdc
– Everton Gouveia
It’s already worked out, see, I put a rotation blocker.
– Everton Gouveia
@Evertongouveia Cool! But then do a search later! A while ago google was kind of filtering out the locked screen apps to get further down the play store search list.
– viana