gpt4 book ai didi

react-native - 如何在 android 的 scrollview 中滚动 Webview?

转载 作者:行者123 更新时间:2023-12-03 15:02:45 25 4
gpt4 key购买 nike

我想在 ScrollView 中使用 WebView 来处理我的 native 应用程序。但如果我这样做,我将无法滚动我的 webview,除非我禁用 ScrollView 上的滚动。但是,我需要 ScrollView 和 webview 中的滚动。
关于如何做到这一点的任何建议或解决方案?

最佳答案

在过去的 2-3 天里,我也在互联网上搜索这个问题,我有一个很棒的解决方案......

npm install --save react-native-webview-autoheight

安装后没有问题
import MyWebView from "react-native-webview-autoheight";

<ScrollView style={{ flex: 1, backgroundColor: "white" }}>
<View
style={{ flex: 1, flexDirection: "column", backgroundColor: "white" }}
pointerEvents={"none"}
>
<Text>Hi I am at top</Text>
<MyWebView
//sets the activity indicator before loading content
startInLoadingState={true}
source={{
uri:
"https://stackoverflow.com/questions/43781301/react-native-how-do-i-scroll-a-webview-inside-scrollview-for-android"
}}
/>
<Text>Hi I am at bottom</Text>
</View>
</ScrollView>

它非常适合我..

关于react-native - 如何在 android 的 scrollview 中滚动 Webview?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43781301/

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