Home | History | Annotate | Download | only in app

Lines Matching defs:button

31 import android.widget.Button;
77 // Watch for button clicks.
78 Button button = (Button)findViewById(R.id.one_shot);
79 button.setOnClickListener(mOneShotListener);
80 button = (Button)findViewById(R.id.one_shot_while_idle);
81 button.setOnClickListener(mOneShotListener);
82 button = (Button)findViewById(R.id.start_repeating);
83 button.setOnClickListener(mStartRepeatingListener);
84 button = (Button)findViewById(R.id.stop_repeating);
85 button.setOnClickListener(mStopRepeatingListener);