我的代码如下,当我收到意图日志时,只能让我确定。我需要获取数据楔中的配置文件列表。请帮忙。
(<any>window).plugins.intentShim.sendBroadcast({
action: 'com.symbol.datawedge.api.ACTION',
extras: {
"com.symbol.datawedge.api.GET_PROFILES_LIST": ""
}
},
function (intent) {
let data_string = "com.symbol.datawedge.api.RESULT_GET_PROFILES_LIST";
console.log('Profile-' + intent.extras[data_string]);
},
function () {
}
);
答案 0 :(得分:1)
如果要获取所有配置文件的列表,则应使用GET_PROFILES_LIST,该文档记录在http://techdocs.zebra.com/datawedge/7-0/guide/api/getprofileslist/中。有一个示例应用程序显示了如何在https://github.com/Zebra/samples-datawedge/blob/master/DataWedge-API-Exerciser/app/src/main/java/com/zebra/datawedgeexerciser/MainActivity.java#L241
处调用它