web有没有办法调用intent啊
@Override // com.xxxxx.device.base.IDeviceManager
public boolean switchInstallApk(boolean z) {
Intent intent = new Intent("com.xbh.action.FORBID_INSTALL_APP");
intent.putExtra("flag", !z);
this.mContext.sendBroadcast(intent);
return true;
}
这个intent,能写一个网页打开吗?(屏蔽了安装应用,有浏览器)