我是 android 的菜鸟,我正在尝试在视图翻转器中切换 4 个视图。我的第一个视图是列表视图,它可以毫无问题地翻转。但是,我的 webview 都没有翻转。viewflipper 可以与其他子视图一起正常工作,例如按钮和图像视图,但不是 web 视图。非常感谢任何解决此问题的帮助。
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tab2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical" >
<ViewFlipper
android:id="@+id/viewFlipper1"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView
android:id="@+id/ListViewId"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:cacheColorHint="#00000000" >
</ListView>
<WebView
android:id="@+id/webViewnews"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</WebView>
<WebView
android:id="@+id/webViewcoinshows"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</WebView>
<WebView
android:id="@+id/webViewyoutube"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</WebView>
</ViewFlipper>