我正在尝试从URL更新我的应用程序,因为我通过服务器分发我的应用程序而不是在Android市场中发布应用程序。我成功更新了应用程序。但我不希望更新完成后出现的对话框。出现的对话框显示“Application Installed”,它有两个按钮1)OPEN 2)DONE。我不希望第二个按钮“完成”。我只想显示一个按钮,即“打开”。我该怎么做呢?
答案 0 :(得分:3)
这是不可能的。
这是标准的android程序,你无法改变安装应用程序的方式并强制用户按下Open。 (用户可以随时按Home或Back按钮)
-----编辑
您可以在Package Installed Intent上启动您的应用程序:
<receiver android:name=".IntentReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED" />
<action android:name="android.intent.action.PACKAGE_REPLACED"/>
<action android:name="android.intent.action.PACKAGE_REMOVED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
广播接收器:
public class IntentReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// Do your stuff here.
}
}