BroadcastReceiver не работает, как я ожидал - PullRequest
0 голосов
/ 04 июля 2018

Я только что написал это маленькое приложение, чтобы оно показывало маленький тост каждый раз, когда менялся режим полета. Не работает

package com.example.android.broadcastreceiverexample;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;
import static android.widget.Toast.*;

public class MyReceiver extends BroadcastReceiver{

@Override
public void onReceive(Context context, Intent intent){
    makeText(context, "Intent detected", LENGTH_LONG).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="com.example.android.broadcastreceiverexample">

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="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>

    <receiver android:name=".MyReceiver" android:exported="true">
        <intent-filter tools:ignore="ExtraText">
            <action android:name="android.intent.action.AIRPLANE_MODE></action>
        </intent-filter>
    </receiver>

</application>

</manifest>

Есть ли что-то, чего мне не хватает здесь, концептуально или в коде?

...