此Android市场API有一个方法isInMarket()
。我可以使用此方法检查Android市场中是否已存在应用程序吗?
AppInfo mAppInfo = new AppInfo("packagename.example");
if (!mAppInfo.isInMarket()) {
//app non-exist in the android market
}
else {
//app exist in the android market
}
我在模拟器中测试了这段代码,但它不起作用。我怎样才能使它发挥作用?
答案 0 :(得分:4)
Android模拟器没有安装市场应用程序,所以框架不会工作。 web-android-market-api要求你安装了android market app。
以下是how to install market到模拟器上的链接