gpt4 book ai didi

android - 不能刷webview?

转载 作者:行者123 更新时间:2023-11-29 02:16:41 27 4
gpt4 key购买 nike

我正在尝试像 ListView 滑动一样滑动 Web View ....从左到右。我按照显示 here 的方式进行操作.

此外,我还在 viewflipper 中设置了 webviews

<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/flipper" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview1" android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview2" android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>

但我认为 webView 的 onTouchEvent 在这里不起作用。

    @Override
public boolean onTouchEvent(MotionEvent event) {
if (gestureDetector.onTouchEvent(event))
return true;
else
return false;
}

最佳答案

尝试将两个 WebView 移出 LinearLayout。 ViewFlipper 在其子项之间切换,并且根据您的设置,ViewFlipper 只有一个子项。试试这个:

<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/flipper" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview1" android:layout_width="fill_parent"
android:layout_height="fill_parent" />
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview2" android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</ViewFlipper>

关于android - 不能刷webview?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3218798/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com