1. 程式人生 > >React native WebView 適配Android 和 Ios的問題

React native WebView 適配Android 和 Ios的問題

在用react native 做開發的時候,用到了Webview這個元件,基本用法可以參考:

https://reactnative.cn/docs/0.51/webview.html#content

我的程式碼大概:

render() {
        console.log("99999" + this.state.loaderr)
        if (!this.state.loaderr) {
            return (
                <View
                    style={{
                        width: width,
                        height: height,
                        // paddingBottom: 85,
                        backgroundColor: 'white'
                    }}
                >
                    <Header navigation={this.props.navigation} name={'技能'}/>
                    <WebView
                        refs="webview"
                        style={{
                            // flex: 1,
                            // backgroundColor: 'white',
                            width: width,
                            // marginBottom: 85,
                        }
                        }
                        automaticallyAdjustContentInsets={true}
                        javaScriptEnabled={true}
                        saveFormDataDisabled={true}
                        scalesPageToFit={true}
                        contentInset={{top:0,left:0,right:0,bottom:0}}
                        // domStorageEnabled={true}
                        // startInLoadingState={true}
                        onError={this.onError.bind(this)}
                        onMessage={this.onMessage.bind(this)}
                        source={{ uri: global.mantic_skill_url + 'apps/aiskill.html', method: 'GET' }}
                    />
                </View>
            );
        } else {
            return (
                <View>
                    <Header navigation={this.props.navigation} />
                    <TouchableOpacity style={styles.container} onPress={this.testForceFun.bind(this)}>
                        <View style={styles.loading}>
                            <Image source={require('./../../img/net_failed.png')} style={styles.searchEmpty}></Image>
                            <Text style={{ color: 'gray', fontSize: 16 }}>網路連線失敗,點選重試</Text>
                        </View>
                    </TouchableOpacity>
                </View>
            )
        }

但是 在ios 手機上是OK的,h5網頁可以自適應,但是在Android平臺上就出問題了,螢幕無法適配,scalesPageToFit 這個屬性就是適配螢幕的,設定是否要把網頁縮放到適應檢視的大小,以及是否允許使用者改變縮放比例。但是死活就是無法適配,

然後網上各種資料查詢,比較少,於是檢視Webview原始碼:

路徑:

./node_modules/react-native/ReactAndroid/src/main/java/com/facebook/react/views/webview

在ReactWebViewManager.java 裡 我看到了這段程式碼:

@ReactProp(name = "scalesPageToFit")
  public void setScalesPageToFit(WebView view, boolean enabled) {
    view.getSettings().setUseWideViewPort(!enabled);
  }

臥槽。。。。竟然取反了,,。。

於是我把scalesPageToFit={true} ,試了一把果然 OK啦。。。

應該算是一個React native的一個bug了吧,

最終這樣寫適配雙平臺:

scalesPageToFit={Platform.OS === 'ios'? true : false}