gpt4 book ai didi

java - 启动接收器不工作

转载 作者:行者123 更新时间:2023-12-02 04:41:35 25 4
gpt4 key购买 nike

首先,请不要将其标记为重复,我已尝试使用此处的几个不同问题来解决该问题,并尝试了该问题的每个解决方案。

因此,我在这里重现了整个代码以及 logcat。

问题:

我正在尝试编写一个在设备重新启动时启动的应用程序。我可以看到多个应用程序在 logcat 中接收 BOOT_COMPLETED 操作,但在设备重新启动时我无法在 logcat 中的任何位置看到我的应用程序。

注意事项:

在通过设备重新启动进行测试之前,我已经启动过一次应用程序。

代码文件:

AndroidManifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.xyz.abc"
android:versionCode="1"
android:versionName="1.0" >

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name="com.xyz.abc.autostart" android:enabled="true" android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>

<activity
android:name=".hello"
android:label="@string/title_activity_hello" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<service
android:name=".service"
android:enabled="true" />
</application>

</manifest>

自动启动.java

package com.xyz.abc;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;

/**
* Created by admin on 008, 8 May 2015.
*/
public class autostart extends BroadcastReceiver
{
public void onReceive(Context context, Intent arg1)
{
Log.w("boot_broadcast_poc", "starting service...");
context.startService(new Intent(context, service.class));
}
}

服务.java

package com.xyz.abc;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
import android.widget.Toast;

/**
* Created by admin on 008, 8 May 2015.
*/
public class service extends Service
{
private static final String TAG = "MyService";
@Override
public IBinder onBind(Intent intent) {
return null;
}
public void onDestroy() {
Toast.makeText(this, "My Service Stopped", Toast.LENGTH_LONG).show();
Log.d(TAG, "onDestroy");
}

@Override
public int onStartCommand(Intent pIntent, int flags, int startId) {
// TODO Auto-generated method stub
Toast.makeText(this, "NotifyingDailyService", Toast.LENGTH_LONG).show();
Log.i("bootbroadcastpoc","NotifyingDailyService");

return super.onStartCommand(pIntent, flags, startId);
}
}

hello.java

package com.xyz.abc;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Toast;


public class hello extends ActionBarActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_hello);
Toast.makeText(getBaseContext(), "Hello........", Toast.LENGTH_LONG).show();
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_hello, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();

//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}

return super.onOptionsItemSelected(item);
}
}

最后,通过BOOT_COMPLETED过滤的logcat:更新:删除了 logcat,因为它没有必要(我也找到了解决方案,我将很快发布)。

  1. 针对“boot_broadcast_poc”过滤的 logcat 为空。
  2. 针对“bootbroadcastpoc”过滤的 logcat 为空。
  3. 我绝对没有看到服务启动,因为我在启动时在屏幕上没有看到任何 Toast。

最佳答案

正如评论中所述,我正在 Redmi 1s 上进行测试,这是一款运行 MIUI 的小米手机。我在模拟器(准确地说是 Bluestacks)上测试了这段相同的代码,它的效果非常好。这可能就是为什么没有人找到解决方案的原因!这段代码没有问题!

事实证明,如前所述 here ,MIUI(我的Android版本是4.3)需要另一组权限,即:

<action android:name="android.intent.action.REBOOT"/>

在 list 中。

其次,MIUI 似乎设置了自动启动应用程序的特殊权限 - 可以在此处设置:

"Settings > Apps > YOUR_APP > Manage permissions"

您需要启用“自动启动”选项。

希望对使用小米红米/小米设备的人有所帮助。附:当我遇到这个问题时,我的测试设备正在运行 MIUI-JHCMIBH45.0。

关于java - 启动接收器不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30124108/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com