0

我正在制作一个应用程序,如果飞行模式处于活动状态,我想在其中显示一个弹出窗口,但是当我使用以下代码时,它将我的应用程序切换到飞行模式意味着我的设备进入飞行模式。如果飞行模式处于活动状态,我想要的地方应该只弹出一个设备。我的代码如下:

public void airplane() {
    final boolean isEnabled = Settings.System.getInt(
              getContentResolver(), 
              Settings.System.AIRPLANE_MODE_ON, 1) == 0;

        // toggle airplane mode
        Settings.System.putInt(
              getContentResolver(),
              Settings.System.AIRPLANE_MODE_ON, isEnabled ? 0: 1);


        // Post an intent to reload
    //  Toast tt=Toast.makeText(getApplicationContext(), "Your phone is in airplane mode", Toast.LENGTH_SHORT);
    //  tt.show();
        Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
        intent.putExtra("state", isEnabled);
        sendBroadcast(intent);

        IntentFilter intentFilter = new IntentFilter("android.intent.action.SERVICE_STATE");

        BroadcastReceiver receiver = new BroadcastReceiver() {
              @Override
              public void onReceive(Context context, Intent intent) {
                    Log.d("AirplaneMode", "Service state changed");
              }
        };

        context.registerReceiver(receiver, intentFilter);

   }
4

1 回答 1

0

我猜我会说你的问题在于你的整数到布尔代码不正确。

尝试:

final boolean isEnabled = (Settings.System.getInt(
              getContentResolver(), 
              Settings.System.AIRPLANE_MODE_ON, 1)) != 0;
于 2012-03-12T11:44:22.580 回答