如何将意图附加信息传递给广播接收者?
我一直在尝试让 Android 应用程序以编程方式在 sdcard 上安装 APK,并在安装后删除 apk。
这就是我的做法:
Intentintent = new Intent(Intent.ACTION_VIEW);
Intent.setDataAndType("ApkFilePath...","application/vnd.android.package-archive"); Intent.putExtra("apkname", apkName); 活动.开始(意图);
我编写了一个 braodcast-reciever 类,以便在安装应用程序后我可以在那里处理 apk 删除过程。但我无法从广播接收器中的意图中获得额外的信息。
I've been trying to get an android application to install an APK on the sdcard programmatically and to delete the apk once it's installed.
This is how I'm doing it:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType("ApkFilePath...","application/vnd.android.package-archive");
intent.putExtra("apkname", apkName);
activity.start(intent);
And I have written a braodcast-reciever class so that I can handle apk deletion process there once the app is installed. But I can't get extras passed from my intent in the broadcast-reciever.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论