HomeSort by relevance Sort by last modified time
    Searched refs:mStopButton (Results 1 - 7 of 7) 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);
101 if (mStopButton.getDrawable() != mStopDrawable) {
102 mStopButton.setImageDrawable(mStopDrawable);
103 mStopButton.setContentDescription(mStopDescription);
104 if (mStopButton.getVisibility() != View.VISIBLE) {
106 mStopButton.setVisibility(View.VISIBLE);
114 mStopButton.setImageDrawable(mRefreshDrawable);
115 mStopButton.setContentDescription(mRefreshDescription)
    [all...]
NavigationBarTablet.java 50 private ImageView mStopButton;
99 mStopButton = (ImageView) findViewById(R.id.stop);
108 mStopButton.setOnClickListener(this);
178 } else if (mStopButton == v) {
255 mStopButton.setImageDrawable(mStopDrawable);
256 mStopButton.setContentDescription(mStopDescription);
261 mStopButton.setImageDrawable(mReloadDrawable);
262 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 61 private final Control mStopButton;
89 mStopButton = stopButton;
90 if (mStopButton != null) {
91 mStopButton.addListener(SWT.Selection, new Listener() {
212 syncExec(mStopButton, new Runnable() {
215 mStopButton.setEnabled(mState == State.ACTIVE);
  /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 83 Button mStopButton;
276 detail.mStopButton = (Button)root.findViewById(R.id.left_button);
309 detail.mStopButton.setOnClickListener(detail);
310 detail.mStopButton.setText(getActivity().getText(detail.mManageIntent != null

Completed in 245 milliseconds