启动已安装的应用程序
如何启动已安装的应用程序?
我已经安装使用如下: 文件 file = new File(dir, "App.apk");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
startActivity(intent);
第二次,我检查软件包是否已经安装,如果是,我想启动。
意图intent = new Intent(com.example.app);
How do I launch the installed application?
I have installed using below:
File file = new File(dir, "App.apk");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
startActivity(intent);
Second time, I am checking if the package already installed, if yes, I want to launch.
Intent intent = new Intent(com.example.app);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我正在使用这个方法。您应该更改包和类名称。
i'm using this method. You should change package and class names.