HomeSort by relevance Sort by last modified time
    Searched refs:mStopButton (Results 1 - 8 of 8) sorted by null

  /packages/apps/Browser/src/com/android/browser/
NavigationBarPhone.java 38 private ImageView mStopButton;
71 mStopButton = (ImageView) findViewById(R.id.stop);
72 mStopButton.setOnClickListener(this);
109 if (mStopButton.getDrawable() != mStopDrawable) {
110 mStopButton.setImageDrawable(mStopDrawable);
111 mStopButton.setContentDescription(mStopDescription);
112 if (mStopButton.getVisibility() != View.VISIBLE) {
114 mStopButton.setVisibility(View.VISIBLE);
122 mStopButton.setImageDrawable(mRefreshDrawable);
123 mStopButton.setContentDescription(mRefreshDescription)
    [all...]
NavigationBarTablet.java 52 private ImageView mStopButton;
101 mStopButton = (ImageView) findViewById(R.id.stop);
111 mStopButton.setOnClickListener(this);
181 } else if (mStopButton == v) {
270 mStopButton.setImageDrawable(mStopDrawable);
271 mStopButton.setContentDescription(mStopDescription);
276 mStopButton.setImageDrawable(mReloadDrawable);
277 mStopButton.setContentDescription(mRefreshDescription);
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MainActivity.java 47 Button mStopButton;
64 mStopButton = (Button) findViewById(R.id.stopbutton);
71 mStopButton.setOnClickListener(this);
85 else if (target == mStopButton)
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/tasks/
ProgressView.java 58 private final Control mStopButton;
86 mStopButton = stopButton;
87 if (mStopButton != null) {
88 mStopButton.addListener(SWT.Selection, new Listener() {
198 syncExec(mStopButton, new Runnable() {
200 mStopButton.setEnabled(mState == State.ACTIVE);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/
AudioQualityVerifierActivity.java 80 private Button mStopButton;
104 mStopButton = (Button) findViewById(R.id.stopButton);
110 mStopButton.setOnClickListener(this);
114 mStopButton.setEnabled(false);
164 mStopButton.setEnabled(true);
180 mStopButton.setEnabled(false);
221 } else if (v == mStopButton) {
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
FrameworkPerfActivity.java 57 Button mStopButton;
192 mStopButton = (Button)findViewById(R.id.stop);
193 mStopButton.setOnClickListener(new View.OnClickListener() {
198 mStopButton.setEnabled(false);
396 mStopButton.setEnabled(true);
418 mStopButton.setEnabled(false);
  /packages/apps/SoundRecorder/src/com/android/soundrecorder/
SoundRecorder.java 229 ImageButton mStopButton;
328 mStopButton = (ImageButton) findViewById(R.id.stopButton);
343 mStopButton.setOnClickListener(this);
725 mStopButton.setEnabled(false);
726 mStopButton.setFocusable(false);
744 mStopButton.setEnabled(false);
745 mStopButton.setFocusable(false);
776 mStopButton.setEnabled(true);
777 mStopButton.setFocusable(true);
799 mStopButton.setEnabled(true)
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningServiceDetails.java 79 Button mStopButton;
262 detail.mStopButton = (Button)root.findViewById(R.id.left_button);
263 detail.mStopButton.setOnClickListener(detail);
264 detail.mStopButton.setText(getActivity().getText(detail.mManageIntent != null

Completed in 6915 milliseconds