BroadCast Receiver gps打开/关闭消息信息

时间:2015-12-21 11:55:36

标签: android gps android-location fusedlocationproviderapi

我创建了一个广播接收器,用于在android中打开或关闭信息gps。 使用的代码:

public class GpsReceiver extends BroadcastReceiver{

    @Override
    public void onReceive(Context context, Intent intent) {
          if (intent.getAction().matches("android.location.PROVIDERS_CHANGED")) {
               Log.i("DIGICERTO","ALTEROU GPS");
            }
    }

}

我没有回复日志,为什么?

1 个答案:

答案 0 :(得分:0)

你必须使用intent-filter在清单上注册这个接收器 android.location.PROVIDERS_CHANGED