0

我正在尝试获取一些东西 - 在 android 的 webview 上显示的任何内容,但无论我做什么,我都什么也看不到。WebView 占用了必要的空白,但不显示任何内容,无论我是硬编码 HTML 还是尝试输入 url。

WebView 的代码是:

<WebView
      style={{
        width: material.sliderWidth,
        minHeight: 200,
        height: 200,
        marginBottom: 10
      }}
      source={{
        html: "<html><body style='color:red'><h1>Helloworld</h1></body></html>"
      }}
      originWhitelist={['*']}
      scalesPageToFit
      showsHorizontalScrollIndicator
      showsVerticalScrollIndicator
      javaScriptEnabled={true}
      domStorageEnabled={true}
      mixedContentMode="compatibility"
      onError={syntheticEvent => {
      const { nativeEvent } = syntheticEvent;
      console.warn('WebView error: ', nativeEvent);
    }}
    />

请看这张照片。粗体标题上方的空白是图像应该显示的位置:

我在这里遗漏了一些明显的东西吗?

4

0 回答 0