我是Android的菜鸟,我试图在视图鳍状肢中切换4个视图。我的第一个视图是列表视图,它没有任何问题翻转。但是,我的网页浏览都没有翻转。 viewflipper可以与其他子视图一起使用,例如按钮和图像视图,而不是webview。任何帮助解决这个问题都非常感谢。
<?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>
答案 0 :(得分:1)
而不是使用ViewFlipper
为什么你不使用ViewPager
:android.support.v4.view.ViewPager
它很容易实现它并在翻转时给你一个更好的效果,并且肯定会工作,我'我以前做过。您可以找到文档here。