我无法使用 v-play nativeUtils 获取 android 联系人。这段代码有问题吗?
App {
AppListView {
anchors.fill: parent
model:nativeUtils.getContacts()
delegate:SimpleRow {
text: modelData.name
detailText: modelData.phoneNumber
}
}
}
有一个名为的新属性,contacts
可用于显示联系人。在此处查看文档和示例:https ://v-play.net/doc/nativeutils/#contacts-prop
最好的,亚历克斯