gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 19:41:37 26 4
gpt4 key购买 nike

对不起大家。首先,由于 AUTO START MANAGER,当我的设备上的应用程序关闭时,我的接收器无法工作。我觉得自己很愚蠢......当我试图解决它时,我学到了非常重要的东西。

首先是Android 6.0权限请求 Broadcast Receivers not working in Android 6.0 Marshmallow

其次:Android - 在 Lollipop 上复制手机状态广播

http://www.skoumal.net/en/android-duplicated-phone-state-broadcast-on-lollipop/

谢谢...

我是 Android 新手,我想学习 BroadcastReceiver&Service。此代码 BroadcastReceiver 监听摘机和空闲状态我的电话并发送 Intent 服务做某事。而应用程序运行一切正常。关闭应用程序 BroadcastReceiver 和服务后不起作用。

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

我在服务启动时看到这条消息:

  1. Toast.makeText(context, ""+phoneState +""+record, Toast.LENGTH_SHORT).show();

  2. Toast.makeText(getApplicationContext(), "服务工作", Toast.LENGTH_SHORT).show();

再次 1. Toast.makeText(context, ""+phoneState +""+record, Toast.LENGTH_SHORT).show();

再次 2. Toast.makeText(getApplicationContext(), "service work", Toast.LENGTH_SHORT).show()

我在服务停止时看到这条消息:

  1. Toast.makeText(context, ""+phoneState +""+record, Toast.LENGTH_SHORT).show();

  2. Toast.makeText(getApplicationContext(), "服务将被停止。", 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();

一切重复。

list :

<?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);
}
}

最佳答案

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

    @Override
public int onStartCommand(Intent intent, int flags, int startId) {

// your business logic

return START_STICKY;
}

关于android - 应用程序关闭时广播接收器和服务不起作用(android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38575866/

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