当前位置: 首页 > 知识库问答 >
问题:

应用程序关闭时广播接收器和服务不工作(android)

于捷
2023-03-14

大家听好了。首先,我的接收器不工作时,应用程序关闭在我的设备,因为自动启动管理器。我觉得自己很傻...当我试图解决它的时候,我学到了非常重要的东西。

首先,Android6.0许可请求广播接收器在Android6.0Marshmallow中不工作

更新:我还注意到,当应用程序运行和一切正常时,服务启动两次,停止两次。

服务启动时,我看到以下消息:

>

  • Toast.MakeText(上下文,“”+PhoneState+“”+Record,Toast.Length_Short).Show();

    又是1。toast.maketext(context,“”+PhoneState+“”+Record,toast.length_short).show();

    又是2。Toast.MakeText(getApplicationContext(),“Service Work”,Toast.Length_Short).Show()

    服务停止时,我看到以下消息:

    Toast.MakeText(getApplicationContext(),“Service will be stopped.”,Toast.Length_Short).Show();

    又是1。toast.maketext(context,“”+PhoneState+“”+Record,toast.length_short).show();

    又是2。Toast.MakeText(getApplicationContext(),“Service will be stopped.”,Toast.Length_Short).Show();

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        package="devapp.deneme">
    
        <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
        <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS"/>
    
        <application
            android:allowBackup="true"
            android:icon="@mipmap/ic_launcher"
            android:label="@string/app_name"
            android:supportsRtl="true"
            android:enabled="true"
            android:theme="@style/AppTheme">
            <activity android:name=".MainActivity">
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
    
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>
    
            <service
                android:name=".MyService"
                android:enabled="true"
                android:exported="true" />
    
            <receiver
                android:name="devapp.deneme.MyReceiver"
                android:enabled="true"
                android:exported="true">
                <intent-filter>
                    <action android:name="android.intent.action.NEW_OUTGOING_CALL"/>
                    <action android:name="android.intent.action.PHONE_STATE"/>
                </intent-filter>
            </receiver>
        </application>
    
    </manifest>
    
    package devapp.deneme;
    
    import android.content.BroadcastReceiver;
    import android.content.Context;
    import android.content.Intent;
    import android.os.Bundle;
    import android.telephony.TelephonyManager;
    import android.widget.Toast;
    
    public class MyReceiver extends BroadcastReceiver {
    
        public MyReceiver(){
    
        }
    
        Intent service = null;
        Bundle bundle = null;
        String phoneState = null;
        boolean record = false;
    
        @Override
        public void onReceive(Context context, Intent intent) {
    
            service = new Intent(context, MyService.class);
            bundle = intent.getExtras();
            phoneState = bundle.getString(TelephonyManager.EXTRA_STATE);
    
            if (phoneState!=null){
                if ((phoneState.equals(TelephonyManager.EXTRA_STATE_OFFHOOK))||(phoneState.equals(TelephonyManager.EXTRA_STATE_IDLE))){
                    service.putExtra("durum", phoneState);
                    if (phoneState.equals(TelephonyManager.EXTRA_STATE_OFFHOOK)) {
                        record = true;
                    }
                    else {
                        record = false;
                    }
                }
                service.putExtra("record",record);
                Toast.makeText(context, "" +phoneState +" " +record, Toast.LENGTH_SHORT).show();
                context.startService(service);
            }
        }
    }
    
    package devapp.deneme;
    
    import android.app.Service;
    import android.content.Intent;
    import android.os.IBinder;
    import android.widget.Toast;
    
    public class MyService extends Service {
        public MyService() {
        }
    
        @Override
        public IBinder onBind(Intent intent) {
            return null;
        }
    
        public int onStartCommand (Intent intent, int flags, int startId){
    
            boolean record = intent.getBooleanExtra("record", false);
            if (record) {
                Toast.makeText(getApplicationContext(), "service work", Toast.LENGTH_SHORT).show();
            }
            else {
                Toast.makeText(getApplicationContext(), "service will be stopped.", Toast.LENGTH_SHORT).show();
                stopSelf();
            }
            return super.onStartCommand(intent, flags, startId);
        }
    }
    
  • 共有1个答案

    夹谷辰沛
    2023-03-14

    您必须在服务类中添加以下内容

        @Override
        public int onStartCommand(Intent intent, int flags, int startId) {
    
               // your business logic 
    
            return START_STICKY;
    }
    
     类似资料:
    • 问题内容: 应用启动后,我需要一直保持广播接收器始终运行。 这是在应用程序中注册此接收器的代码 和接收器代码 问题答案: 你可以使用服务 在主应用中启动/停止服务 服务

    • 我刚把Nexus5更新到Android6,直到现在我的应用程序还能正常工作,但现在广播接收器却不工作了。新版本有什么变化吗?这是我试过的在以前的版本上工作的代码,但在Marshmallow中不行- Android清单 同样,PHONE_STATE的广播接收器也不工作。

    • 问题内容: 好的,我已经尝试了Stack上的所有解决方案,但没有任何效果。我当前的方法从MainActivity注册了“ SmsListener”接收器。我要做的就是初始化onReceive方法。没有错误;它根本不是在广播。我究竟做错了什么?在此处粘贴适用的代码。可能需要的其他任何东西都可以问。 更新:这是一个未解决的类似问题,当 我在Android6.0.1下测试我正在测试的GoogleHang

    • 我试图创建一个应用程序,允许用户在设定的时间间隔内或手动静音设备。我也希望用户能够输入更复杂的规则,如静音手机只有当连接到某个WiFi网络,蓝牙设备或当进入一个地理位置。在静默模式,但是,我希望允许用户创建联系人列表,电话应该仍然响。 为此,我创建了一个前台服务,在其中注册一个广播接收器。然而,在活动离开前台仅仅几分钟后,接收器就会准时停止工作,并不时地更新。 这个问题发生在Android8的设备

    • 嗨,我试图捕捉短信内容和使用我的应用程序,所以我做了一个广播接收器与许可和清单,但当设备接收短信,我的代码不运行,这意味着广播接收器不发射。我也查了这里里里外外的很多文章,有一些: Android短信接收结果到主要活动短信接收不工作 我还尝试在活动onCreate()中动态注册接收器,但没有任何变化 有人知道问题出在哪里吗?它应该只是庆祝一个消息被累犯,这样我就可以继续工作,但接收器似乎甚至没有发