Recently i developed a Webapp in codeignitor(php). Now i am trying to convert into WebviewActivity
for Android.
Activity when open in Android browser
it works fine
but when opened in Webview activity App i get this
Half side of Website blank
Methods i tried
webView.setWebViewClient(new WebViewClient() )
webView.setWebChromeClient(new MyWebChromeClient(this))
i have been stuck on this problem from several hours. searched everywhere but did not find the right answer
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<WebView
android:id="@+id/activity_main_webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>