我正在为我的应用编写应用更新程序。确保我在设备上安装了apk后,这就是我正在尝试更新的应用程序中所做的事情:
Intent promptInstall = new Intent(Intent.ACTION_VIEW);
File f = new File(apkLocation);
promptInstall.setDataAndType(Uri.fromFile(f), "application/vnd.android.package-archive");
_context.startActivity(promptInstall);
这将启动我的安装程序,显示应用程序权限,然后我可以单击“安装”。但是从这里应用程序只是关闭,我得不到任何消息(我希望对话框告诉我安装成功,让我选择按“关闭”或“打开”)。它只是进入设备的主屏幕,恕不另行通知。
另外,当我手动打开它时,应用程序确实已更新。 如何让安装程序按预期完成?是否有任何设定意图?
在写这篇文章时,我想知道这种情况发生的原因是当前应用程序是否只是在设备上被覆盖,从而关闭它,并且由于它的来源被杀死而没有得到意图的结果?
答案 0 :(得分:15)
您所能做的就是使用android.intent.action.PACKAGE_INSTALL
或android.intent.action.PACKAGE_REPLACED
之类的意图过滤器注册接收器,您可以从中重新启动应用程序。
<receiver android:enabled="true" android:exported="true" android:label="BootService" android:name="com.project.services.BootService">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<data android:scheme="package"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED"/>
<data android:scheme="package"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PACKAGE_INSTALL"/>
<data android:scheme="package"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PACKAGE_CHANGED"/>
<data android:scheme="package"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REPLACED"/>
<data android:scheme="package"/>
</intent-filter>
</receiver>
</application>
并且
public class BootService extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(Intent.ACTION_PACKAGE_ADDED)) {
Intent serviceIntent = new Intent();
serviceIntent.setClass(context,Controller.class);
serviceIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(serviceIntent);
} else if (intent.getAction().equals(Intent.ACTION_PACKAGE_REPLACED)) {
Intent serviceIntent = new Intent();
serviceIntent.setClass(context, Controller.class);
serviceIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(serviceIntent);
}
}
}
答案 1 :(得分:2)
要成功更新,您需要启动意图,并将URI指示您的更新应用作为新任务。
final Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(PATH_TO_APK));
"application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
我的帖子如下:
答案 2 :(得分:1)
首先,除非您具有root权限或具有系统权限,否则无法在没有提示的情况下安装。我不认为你是这样问的,但你的一个段落并不清楚。
其次,如果安装正在运行的应用程序的更新版本,则会出现您所看到的行为:该应用程序已强制关闭并更新。您无法就地更新。您可以检测安装何时中止,因为将恢复调用安装程序的活动。
为了更新正在运行的应用并保持其正常运行,您需要一个单独的进程(app)来监控安装并重新启动应用。