Ich habe ein Registerkartenmenü mit einer ViewPager
. Jede Registerkarte enthält Fragmente aus dem Android.support.v4-Paket (Kompatibilität mit alten SDKs). Eines der Fragmente ist ein WebView
(genannt FragmentWeb
) und ich möchte, dass es im Pager-Layout bleibt. Das Problem ist, wenn mein WebView
aufgeblasen wird, läuft es im Vollbildmodus.
Gibt es eine Möglichkeit, den Webbrowser unter meinen Tabs zu halten?
Dankeschön
Meine Fragment-Klasse : 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;
}
}
Das Layout meines Fragments : 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>