私はアンドロイドの初心者で、ビューフリッパーで4つのビューを切り替えようとしています。私の最初のビューはリストビューで、問題なく反転します。ただし、私のWebビューはどれも反転していません。viewflipper は、webviews ではなく、ボタンや imageviews などの他の子ビューで正常に動作します。これを解決する助けがあれば大歓迎です。
<?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>