我是离子框架和移动应用程序的新手,是否有任何插件或方法可以获取Android设备上安装的应用程序列表?
答案 0 :(得分:3)
确实有一个现成的Cordova插件可以提供设备中已安装应用的列表。这个AppList Plugin可以帮助你。
事实上它也提供了应用程序图标。
答案 1 :(得分:0)
添加
import * as Applist from 'cordova-plugin-applist2/www/Applist.js';
import { Platform } from '@ionic/angular';
到您的组件.ts文件
然后在可能的构造函数中使用它
constructor(public platform: Platform) {
platform.ready().then(
function(){
if(platform.is('android') && !platform.is('mobileweb')){
var success = function(app_list) {
//success function
console.log(app_list);
};
var error = function(app_list) {
//error
console.log("An Error occured while fetching App Lists");
console.error(app_list);
};
//for the date parameters, any date is okay,
//the first date should be in the past
Applist.createEvent('', '', '', new Date(1999, 10, 11, 12, 12, 12, 12), new Date(), success, error);
}
}
);
}