구글링을 통해서 아래와 같은 코드를 찾아 내었으나, 갤Note4 에서 동작하지가 않는군요 ㅜㅜㅜㅜㅜㅜㅜ
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final Button button = (Button) findViewById(R.id.button1);
button.setOnClickListener(new OnClickListener() {
boolean enabling;
public void onClick(View v)
{
enabling = isAirplaneModeOn(MainActivity.this);
Settings.System.putInt(getContentResolver(),
Settings.Global.AIRPLANE_MODE_ON,enabling ? 0 : 1);
Intent intent = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
intent.putExtra("state", !enabling);
sendBroadcast(intent);
}
});
}
어떻게 해야 될까요?...