I have an problem with iframe
. It's working fine in all browsers included android devices a. when it converting into android app using phonegap it's not working. Also it's appearing whole screen. Anyone please suggest.
Asked
Active
Viewed 2,329 times
1 Answers
2
Add This code inside of savedInstanceState
function
super.appView.setWebViewClient(new CordovaWebViewClient(this, super.appView) {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
return false;
}
also add this code below import
import android.webkit.WebView;
Now it's working...:(:(:(

Nisar
- 828
- 1
- 10
- 28