我正在研究如何让我的Android应用程序在前台运行。
这将是一个私人发布的应用程序,所以我可以做任何可能的事情,以确保它在设备上持续运行(HDMI电视棒)
那么,我怎样才能确保应用程序无论如何都能继续运行?该应用程序在资源使用方面非常轻量级,因此有希望它不会成为问题。
我读过清单中的持久性参数,但看起来它可能只适用于系统应用程序?
我应该将我的应用设为系统应用吗?我该怎么做呢,它有帮助吗?
答案 0 :(得分:15)
如果您想使用外部应用:Autostart and StaY!
如果您想以编程方式执行此操作,可以使用每隔“x”毫秒轮询一次的服务,以查看您的应用是否位于前台。如果不是,它将启动/将您的应用程序置于前台。这样做:
public class PersistService extends Service {
private static final int INTERVAL = 3000; // poll every 3 secs
private static final string YOUR_APP_PACKAGE_NAME = "YOUR_APP_PACKAGE_NAME";
private static boolean stopTask;
private PowerManager.WakeLock mWakeLock;
@Override
public void onCreate() {
super.onCreate();
stopTask = false;
// Optional: Screen Always On Mode!
// Screen will never switch off this way
mWakeLock = null;
if (settings.pmode_scrn_on){
PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
mWakeLock = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, "a_tag");
mWakeLock.acquire();
}
// Start your (polling) task
TimerTask task = new TimerTask() {
@Override
public void run() {
// If you wish to stop the task/polling
if (stopTask){
this.cancel();
}
// The first in the list of RunningTasks is always the foreground task.
RunningTaskInfo foregroundTaskInfo = activityManager.getRunningTasks(1).get(0);
String foregroundTaskPackageName = foregroundTaskInfo .topActivity.getPackageName();
// Check foreground app: If it is not in the foreground... bring it!
if (!foregroundTaskPackageName.equals(YOUR_APP_PACKAGE_NAME)){
Intent LaunchIntent = getPackageManager().getLaunchIntentForPackage(YOUR_APP_PACKAGE_NAME);
startActivity(LaunchIntent);
}
}
};
Timer timer = new Timer();
timer.scheduleAtFixedRate(task, 0, INTERVAL);
}
@Override
public void onDestroy(){
stopTask = true;
if (mWakeLock != null)
mWakeLock.release();
super.onDestroy();
}
}
以上代码还有“选项”强制屏幕始终保持开启状态!当然,您需要以下权限:
<uses-permission android:name="android.permission.GET_TASKS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
并且不要忘记注册您的服务:
<service android:name="YOURPACAKGE.PersistService"
android:enabled="true"/>
答案 1 :(得分:3)
使用它:
import android.os.PowerManager;
public class MyActivity extends Activity {
protected PowerManager.WakeLock mWakeLock;
/** Called when the activity is first created. */
@Override
public void onCreate(final Bundle icicle) {
setContentView(R.layout.main);
/* This code together with the one in onDestroy()
* will make the screen be always on until this Activity gets destroyed. */
final PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
this.mWakeLock = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, "My Tag");
this.mWakeLock.acquire();
}
@Override
public void onDestroy() {
this.mWakeLock.release();
super.onDestroy();
}
}
在清单中:
<uses-permission android:name="android.permission.WAKE_LOCK" />
答案 2 :(得分:2)
这不太容易实现,因为前景应用在技术上不应该不停地运行。此外,如果android内存不足,它将开始查杀风险最小的应用程序,然后需要用户重新启动应用程序。
如上所述,您可以将其设为系统应用程序,但我认为您需要根设备或构建自己的ROM并使您的应用程序成为ROM的一部分。可能不是满足您需求的最佳解决方案,尽管很少有人能够将ROM闪存到他们的设备上。
我认为最简单的解决方案是在清单中加入您的应用是主屏幕替代品,即启动器应用。我不知道我头顶的确切代码,但这会进入android清单中的应用程序部分。这意味着只要设备启动,或者用户按下主页按钮,它们就会被带到您的应用程序。
答案 3 :(得分:0)
您可以通过在<intent-filter>
标记中添加以下2个类别标记,使您的应用成为启动器:
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.HOME"/>
然后您应该始终检查是否有另一个应用程序在顶部运行,运行以下代码将用户定向到我们的应用程序:
Intent startMain = new Intent(Intent.ACTION_MAIN);
startMain.addCategory(Intent.CATEGORY_HOME);
startMain.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startMain);
我已经尝试过这个解决方案,但它无法隐藏顶部绘制的应用,例如Facebook Messenger聊天头。
答案 4 :(得分:0)
我通过运行粘性服务解决了这个问题,当活动关闭时重新启动应用程序。
//Your activity
@Override
public void onPause() {
super.onPause();
if (yourservice != null) {
yourservice.validateActivityOnPause();
}
}
并且在validateActivityOnPause()中有类似的内容:
//Your service
public void validateLynxActivityOnPause() {
//Do some stuff here
Intent startActivityIntent = new Intent(this, LynxActivity.class);
startActivityIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.startActivity(startActivityIntent);
}
答案 5 :(得分:0)
现在不推荐使用activityManager.getRunningAppProcesses()(从API21开始),您需要替换:
RunningTaskInfo foregroundTaskInfo = activityManager.getRunningTasks(1).get(0);
String foregroundTaskPackageName = foregroundTaskInfo .topActivity.getPackageName();
具有:
List<ActivityManager.RunningAppProcessInfo> tasks = activityManager.getRunningAppProcesses();
String foregroundTaskPackageNameTest = tasks.get(0).processName;
别忘了用以下命令导入列表:
import java.util.List;
作为旁注,我不确定OP保持屏幕始终打开的方式。我不确定它是否会像他那样工作,但是更重要的是,不建议使用它,并且强烈建议不要使用Wake Locks,因为您需要添加权限,这会打开bug的大门。相反,通常最好使用窗口管理器标志: https://developer.android.com/reference/android/view/WindowManager.LayoutParams.html#FLAG_KEEP_SCREEN_ON
答案 6 :(得分:0)
您可以尝试startLockTask();
有关更多信息,请visit here