我的应用程序,是不是在Play商店在网络上验证是否有新的版本,下载并启动它。 安装完毕后,我想重新启动应用程序,我会用一个BroadcastRecevier
与ACTION_PACKAGE_REPLACED
。 这是代码:
广播:
public void onReceive(Context context, Intent intent) {
if(intent.getAction().equals(Intent.ACTION_PACKAGE_REPLACED)){
ApplicationInfo app = new ApplicationInfo();
if(app.packageName.equals("it.android.downloadapk")){
Intent LaunchIntent = context.getPackageManager().getLaunchIntentForPackage(app.packageName);
context.startActivity(LaunchIntent);
}
}
}
表现:
<receiver android:name="it.android.downloadapk.Broadcast">
<intent-filter>
<action android:name="android.intent.action.ACTION_PACKAGE_REPLACED"></action>
<data android:scheme="package" android:path="it.android.downloadapk" />
</intent-filter>
</receiver>
问题是,当我安装新的APK,广播似乎没有开始,为什么呢?
看到这一点:
如何知道我的Android应用程序已经以重置报警升级?
正确的解决办法是,你使用了错误的字符串中的清单: http://developer.android.com/reference/android/content/Intent.html#ACTION_PACKAGE_REPLACED
它应该是“android.intent.action.PACKAGE_REPLACED”代替。
好吧,我看到,我已经写了尚不足以尝试一下,所以我会破例发布整个项目只是为了显示它的工作原理:应用程序代码是在一个名为“com.broadcast_receiver_test”包。 不要忘记在测试前运行它,否则它不会在某些Android版本(我认为API 11+)工作。
表现:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.broadcast_receiver_test" android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="3" />
<application android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<activity android:name=".BroadcastReceiverTestActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".MyBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REPLACED"/>
<data android:scheme="package" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REMOVED"/>
<data android:scheme="package" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED"/>
<data android:scheme="package" />
</intent-filter>
</receiver>
</application>
</manifest>
MyBroadcastReceiver.java:
public class MyBroadcastReceiver extends BroadcastReceiver
{
@Override
public void onReceive(final Context context,final Intent intent)
{
final String msg="intent:"+intent+" action:"+intent.getAction();
Log.d("DEBUG",msg);
Toast.makeText(context,msg,Toast.LENGTH_SHORT).show();
}
}
请只要运行它,看到它完美的作品。
编辑:如果您的应用程序是API12及以上,且只希望来处理您的应用程序的更新的情况下,可以单独使用此意图:
http://developer.android.com/reference/android/content/Intent.html#ACTION_MY_PACKAGE_REPLACED
我把下面的接收器在AndroidManifest.xml
<receiver android:name=".StartupReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED"/>
</intent-filter>
</receiver>
所以,我的应用程序可以在更新以及设备重启启动。 Ofcourse因为每个人都有提到,你需要MY_PACKAGE_REPLACED API 12+。