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