I got a tab menu using ViewPager . Each tab contains fragments from the android.support.v4 package (compatibility with old SDKs). One snippet is a WebView (called FragmentWeb ), and I want it to stay in the pager layout. The problem is that when my WebView , it works in full screen mode.
Is there a way to keep the web browser under my tabs?
thanks
My snippet class: FragmentWeb.java
public class FragmentWeb extends Fragment { public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View mainView = (View) inflater.inflate(R.layout.fragment_web, container, false); WebView webView = (WebView) mainView.findViewById(R.id.webview); webView.loadUrl("http://www.google.com"); return mainView; } }
My fragment snippet: fragment_web.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" > <WebView android:id="@+id/webview" android:layout_width="fill_parent" android:layout_height="fill_parent" /> </LinearLayout>
source share