说明
无法使用Linking. openURL('tel:+123456789')打开电话呼叫
环境
环境:操作系统:macOS High Sierra 10.13.4 8.5.0Yarn:Not Found npm:5.8.0看守人:未找到Xcode:Xcode 9.3 Build version 9E145 Android Studio:2.3 AI-162.4069837
packages:(wanted => installed)react:16.3.1 => 16.3.1 react-native:https://github.com/expo/react-native/archive/sdk-27.0.0.tar.gz => 0.55.2 expo:27.0.1,
复制步骤
import ...
export default class App extends React.Component {
_pressCall=()=>{
const url='tel:+123456789'
Linking.openURL(url)
}
render() {
return (
<View style={styles.container}>
<Button title='call' onPress={this._pressCall}/>
</View>
);
}
}
https://snack.expo.io/@kikoololmdrxdd/test-linking-phone-call
预期行为
公开电话
实际行为
[Android]Error message
attempt to invoke virtual method 'boolean java.lang.string.endsWith(java.
lang.String)' on a null object reference
4条答案
按热度按时间lrl1mhuk1#
我找到了一个解决办法:您需要将'tel:'转换为'tel://'
eaf3rand2#
tel:
在Android上工作tel://
在iPhone上工作5m1hhzi43#
tel://
适用于iPhone和Android。RN 0.61
eyh26e7m4#
我找到了一个解决办法:您需要将'tel:'转换为'tel://'
链接.openURL(
tel://${phone}
)