2017-02-01 10 views

答えて

0

@SuppressWarnings("deprecation") 
@TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1) 
public static boolean isAirplaneModeOn(Context context) {   
    if (Build.VERSION.SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) { 
     return Settings.System.getInt(context.getContentResolver(), 
       Settings.System.AIRPLANE_MODE_ON, 0) != 0;   
    } else { 
     return Settings.Global.getInt(context.getContentResolver(), 
       Settings.Global.AIRPLANE_MODE_ON, 0) != 0; 
    }  
} 
関連する問題