Android APP開發活用範例速查大辭典(Ch0110-使用標準ToggleButton「單一按鈕兩個狀態」) Android APP開發活用範例速查大辭典(Ch0110-使用標準ToggleButton「單一按鈕兩個狀態」) 2015-09-01 jashliao Comments 0 Comment Android APP開發活用範例速查大辭典(Ch0110-使用標準ToggleButton「單一按鈕兩個狀態」) 程式碼片段 // 監聽ToggleButton切換開關 final ToggleButton tb = (ToggleButton) findViewById(R.id.ToggleButton); tb.setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { Toast.makeText(Ch0110.this, getString(R.string.ch0110_toggle_shift, isChecked), Toast.LENGTH_SHORT).show(); } });