情况:
问题:
如何完成第5步?基本上我需要知道如何以编程方式从后台恢复应用程序。
我尝试启动“重新启动”我的应用程序活动的意图,但它没有起作用:
Intent intent = new Intent(context, MainActivity.class);
intent.setAction(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
context.startActivity(intent);
我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.taxti"
android:versionCode="43"
android:versionName="1.5.3" >
<uses-sdk
android:minSdkVersion="13"
android:targetSdkVersion="21" />
<permission
android:name="com.example.taxti.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="com.example.taxti.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<permission android:name="com.taxti.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.taxti.permission.C2D_MESSAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
<uses-permission android:name="android.permission.CLEAR_APP_CACHE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:hardwareAccelerated="true"
android:label="@string/app_name"
android:name="com.taxti.Globals"
android:theme="@style/AppTheme" >
<activity
android:name="com.taxti.InitialActivity"
android:label="@string/app_name"
android:windowSoftInputMode="adjustPan"
android:screenOrientation="sensorLandscape"
android:theme="@style/MyTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.taxti.MainActivity"
android:label="@string/app_name"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustPan"
android:screenOrientation="sensorLandscape"
android:theme="@style/MyTheme">
</activity>
<service android:name=".MainActivityForegroundService" />
<intent-filter>
<action android:name="android.net`enter code here`.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.CALL_PRIVILEGED" />
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.DIAL" />
<action android:name="android.intent.action.CALL_BUTTON" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="tel" />
</intent-filter>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="xxxx" />
<uses-library android:name="com.google.android.maps" />
<receiver
android:name=".GcmBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="com.taxti" />
</intent-filter>
</receiver>
</application>
</manifest>
答案 0 :(得分:5)
要将您的应用置于前台,您必须从其他上下文(startActivity()
或Service
)拨打BroadcastReceiver
。只需在startActivity()
内拨打Activity
即可将您的应用带到前台。
您不需要Intent
中的操作和类别,但您需要设置Intent.FLAG_ACTIVITY_NEW_TASK
。
答案 1 :(得分:2)
如果您的活动涉及不同的任务,您可以使用此活动将活动的任务置于前台:
ActivityManager activityManager = (ActivityManager) getApplicationContext().getSystemService(Context.ACTIVITY_SERVICE);
activityManager.moveTaskToFront(getTaskId(), ActivityManager.MOVE_TASK_NO_USER_ACTION);
您需要android.permission.REORDER_TASKS
才能这样做。它甚至可以在Android M中运行,但是在某些情况下从服务中获取意图会更好。
答案 2 :(得分:1)
只需建立一个服务,在后台执行您想要的任何操作。甚至更好:在后台执行某些操作,使用侦听器监听,在您等待的事件发生时立即绑定服务(计时器等)。 现在你在服务中,你只需调用应该在前台的Activity,就像你在其他任何地方一样:
Intent i = new Intent(MyService.this, MyActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
MyService.this.startActivity(i);
答案 3 :(得分:1)
David Wasser的回答有助于解决我的问题。
我的活动正在前台Service
中运行,因此我必须从startActivity()
上下文调用Service
方法。
Intent intent = new Intent(context, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
mServiceContext.startActivity(intent);
答案 4 :(得分:0)
以编程方式从后台恢复应用程序
让您的活动成为FOREGROUND,用户在BACKGROUND中的当前活动。 用户的工作是GONE
从用户角度来看,这不是正确的行为。此外,如果我们以编程方式恢复活动,活动生命周期将被破坏。活动状态将会丢失。
替代方案:
当您的计时器,任务(任何内容)在后台完成时,您可以提供NOTIFICATION
。如果用户有兴趣检查您的活动,那么他/她可以在不中断当前工作的情况下查看通知
答案 5 :(得分:0)
我认为最好的方法是通过IntentService。它也是这样的,它可能是最简单的方法。所以顺序是:在Activity中注册一个接收器(在onCreate中)来监听你想要的事件,然后当接收器获得事件时,它以标准方式启动一个IntentService,然后启动Activity。
这样它就可以将应用程序放在其他应用程序之前,包括活动应用程序和隐藏应用程序。 (但是这应该谨慎使用。通常情况下,用户不会喜欢在他正在使用的人面前弹出另一个应用程序,除非有非常好的理由。)<登记/>
在我的KitKat设备(4.4.x)上,我对它进行了测试,只有在没有打开其他应用程序的情况下,我才可以通过调用活动中的接收器调用startActivity来启动应用程序,这是我的应用程序隐藏在主屏幕下。然后它将成为最重要的。如果另一个应用程序处于打开状态,即使它也被隐藏了(但在我的应用程序前面;我实际上没有测试过如果两个应用程序都被隐藏且我的应用程序在前面会发生什么,但是那个&#39 ;不是很重要),如果从同一个活动中开始,它就不会成为最重要的。因此,为了使它总是弹出,你需要使用IntentService(或其他方式,但就我所知,这是最简单的方法)。