无法使用qml和v-play获取联系人

时间:2018-02-17 09:29:07

标签: qt qml v-play

我无法使用v-play nativeUtils获取android联系人。这段代码有问题吗?

 App {
   AppListView {
     anchors.fill: parent
     model:nativeUtils.getContacts()
     delegate:SimpleRow {
       text: modelData.name
       detailText: modelData.phoneNumber
     }
  }
}

1 个答案:

答案 0 :(得分:0)

有一个名为contacts的新属性,可用于显示联系人。在此处查看文档和示例:https://v-play.net/doc/nativeutils/#contacts-prop

最好, 亚历克斯