我正在制作一个 React Native 应用程序,在一个屏幕中有一个表单,用户必须在其中填写用户必须填写他的手机号码的表单,所以我正在制作一个按钮,该按钮将打开联系人应用程序用户电话,用户可以从该列表中选择联系人号码,该号码将填写在该字段中。
我找到了这个链接 react-native-contacts但我认为它是
获取所有联系人列表并使用 ListView 在 react native 应用程序中显示它,但我不想要这种类型的功能。我只想打开联系人应用程序,然后如果用户选择任何应填写在手机号码字段中的特定联系人。
代码实现
import ContactsWrapper from 'react-native-contacts-wrapper';
import { Separator, SeparatorDate } from '../../components/List';
export default class AddNewClub extends Component {
constructor(props) {
super(props);
this.onMobileIconPressed = this.onMobileIconPressed.bind(this);
this.state = {
registerButtonClicked: false,
};
}
registerButtonClick = () => {
this.setState({
registerButtonClicked: true,
});
};
onMobileIconPressed() {
ContactsWrapper.getContact()
.then((contact) => {
// Replace this code
console.log(contact);
})
.catch((error) => {
console.log("ERROR CODE: ", error.code);
console.log("ERROR MESSAGE: ", error.message);
});
}
这是我编写的代码,当我在设备上测试此屏幕时,它会给出错误“无法解析模块 react-native-contacts-wrapper
Best Answer-推荐答案 strong>
您可以使用 react-native-contacts-wrapper
关于android - 在 native react 中打开联系人应用程序,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/48254825/
|