为什么在BroadcastReceiver中用Toast报错?

新手上路,请多包涵
private final BroadcastReceiver mGattUpdateReceiver = new BroadcastReceiver() {
        @Override
        public void onReceive(Context context, Intent intent) {
            final String action = intent.getAction();
            if (BluetoothLeService.ACTION_GATT_CONNECTED.equals(action)) {
                Toast.makeText(this, "BroadcastReceiver:  ACTION_GATT_CONNECTED", Toast.LENGTH_SHORT).show();
                mConnected = true;
                updateConnectionState(R.string.connected);
                invalidateOptionsMenu();
            } else if (BluetoothLeService.ACTION_GATT_DISCONNECTED.equals(action)) {
                mConnected = false;
                updateConnectionState(R.string.disconnected);
                invalidateOptionsMenu();
                //clearUI();
            } else if (BluetoothLeService.ACTION_GATT_SERVICES_DISCOVERED.equals(action)) {
                // Show all the supported services and characteristics on the user interface.
                displayGattServices(mBluetoothLeService.getSupportedGattServices());
            } else if (BluetoothLeService.ACTION_DATA_AVAILABLE.equals(action)) {
                byte date[]=intent.getByteArrayExtra(BluetoothLeService.EXTRA_DATA);
                System.out.println(date+"-------------=-");
                /*if(BlueTooth.mChecksumError==false){
                    displayData(date);    
                }*/

            }
        }
    };

为什么在BroadcastReceiver中我用Toast时候报这个错:
The method makeText(Context, CharSequence, int) in the type Toast is not applicable for the arguments (new BroadcastReceiver(){}, String, int)

阅读 5k
1 个回答

makeText第一参数要求的是Context,
显然, BroadcastReceiver并不是.

请使用onReceiver方法的第一参数context

Activity中, makeText可以使用this, 是因为 Activity extends Context了.

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题