誰かがこの方法が使われる理由を教えてくれるのは本当に役に立ちます。AndroidでaddListenerOnButtonメソッドが使用されるのはなぜですか?
public void addListenerOnButton() {
toggleButton1 = (ToggleButton) findViewById(R.id.toggleButton1);
toggleButton2 = (ToggleButton) findViewById(R.id.toggleButton2);
btnDisplay = (Button) findViewById(R.id.btnDisplay);
btnDisplay.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
StringBuffer result = new StringBuffer();
result.append("toggleButton1 : ").append(toggleButton1.getText());
result.append("\ntoggleButton2 : ").append(toggleButton2.getText());
Toast.makeText(MyAndroidAppActivity.this, result.toString(),
Toast.LENGTH_SHORT).show();
}
}
あなたはどのような方法で正確に知りたいですか? – aydinugur
あなたのスニペットに質問に答えるのに十分なコードがありません。アプリケーションの別のメソッドが、あなたが示したaddListenerOnButtonメソッドを呼び出していますか? –