HomeSort by relevance Sort by last modified time
    Searched refs:Button (Results 951 - 975 of 1156) sorted by null

<<31323334353637383940>>

  /packages/apps/PackageInstaller/src/com/android/packageinstaller/
PackageInstallerActivity.java 50 import android.widget.Button;
91 private Button mOk;
92 private Button mCancel;
208 mOk = (Button)findViewById(R.id.ok_button);
209 mCancel = (Button)findViewById(R.id.cancel_button);
213 // There is nothing to scroll view, so the ok button is immediately
  /packages/apps/Settings/src/com/android/settings/
CryptKeeper.java 59 import android.widget.Button;
428 * re-run if the user clicks the power button (sleeping/waking the screen), and this is
573 // Hide the encryption-bot to make room for the "factory reset" button
576 // Show the reset button, failure text, and a divider
577 final Button button = (Button) findViewById(R.id.factory_reset); local
578 button.setVisibility(View.VISIBLE);
579 button.setOnClickListener(new OnClickListener() {
749 // Disable the Emergency call button if the device has no voice telephone capabilit
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
RunningServiceDetails.java 33 import android.widget.Button;
84 Button mStopButton;
85 Button mReportButton;
277 detail.mStopButton = (Button)root.findViewById(R.id.left_button);
278 detail.mReportButton = (Button)root.findViewById(R.id.right_button);
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettings.java 62 import android.widget.Button;
145 // this boolean extra specifies whether to disable the Next button when not connected. Used by
149 // should Next button only be enabled when we have a connection?
305 // if we're supposed to enable/disable the Next button based on our current connection
736 Button setup = (Button) mWifiAssistantCard.findViewById(R.id.setup);
737 Button noThanks = (Button) mWifiAssistantCard.findViewById(R.id.no_thanks_button);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 98 self.bcont = b = Button(bframe, text="Go", command=self.cont)
100 self.bstep = b = Button(bframe, text="Step", command=self.step)
102 self.bnext = b = Button(bframe, text="Over", command=self.next)
104 self.bret = b = Button(bframe, text="Out", command=self.ret)
106 self.bret = b = Button(bframe, text="Quit", command=self.quit)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 98 self.bcont = b = Button(bframe, text="Go", command=self.cont)
100 self.bstep = b = Button(bframe, text="Step", command=self.step)
102 self.bnext = b = Button(bframe, text="Over", command=self.next)
104 self.bret = b = Button(bframe, text="Out", command=self.ret)
106 self.bret = b = Button(bframe, text="Quit", command=self.quit)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ClientRulesEngine.java 97 import org.eclipse.swt.widgets.Button;
123 /** The dialog button ID for the user choosing "Clear" */
442 1 /* default button: Cancel */);
493 Button button = new Button(composite, SWT.PUSH);
494 button.setText("Create New...");
495 button.addSelectionListener(new SelectionAdapter() {
585 Button button = new Button(composite, SWT.PUSH)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiTreeBlock.java 57 import org.eclipse.swt.widgets.Button;
109 /** The "add" button for the tree view */
110 private Button mAddButton;
111 /** The "remove" button for the tree view */
112 private Button mRemoveButton;
113 /** The "up" button for the tree view */
114 private Button mUpButton;
115 /** The "down" button for the tree view */
116 private Button mDownButton;
660 * Called when the "Add..." button next to the tree view is selected
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
ApplicationInfoPage.java 44 import org.eclipse.swt.widgets.Button;
68 private Button mCreateActivityCheckbox;
72 private Button mCreateTestCheckbox;
116 mCreateActivityCheckbox = new Button(container, SWT.CHECK);
141 mCreateTestCheckbox = new Button(container, SWT.CHECK);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/orientation/
CameraOrientationActivity.java 29 import android.widget.Button;
61 private Button mTakePictureButton;
91 mTakePictureButton = (Button) findViewById(R.id.take_picture_button);
113 // Hitting the pass button goes to the next test activity.
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/
CameraVideoActivity.java 37 import android.widget.Button;
93 private Button captureButton;
211 captureButton = (Button) findViewById(R.id.record_button);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
NotificationListenerVerifierActivity.java 43 import android.widget.Button;
175 View button = item.findViewById(R.id.nls_action_button); local
176 button.setClickable(false);
177 button.setEnabled(false);
200 Button button = (Button) item.findViewById(R.id.nls_action_button); local
201 button.setText(actionId);
203 button.setTag(actionId);
211 View button = item.findViewById(R.id.nls_action_button) local
    [all...]
  /developers/build/prebuilts/gradle/Camera2Video/Application/src/main/java/com/example/android/camera2video/
Camera2VideoFragment.java 50 import android.widget.Button;
81 * Button to record video
83 private Button mButtonVideo;
264 mButtonVideo = (Button) view.findViewById(R.id.video);
  /developers/samples/android/media/Camera2Video/Application/src/main/java/com/example/android/camera2video/
Camera2VideoFragment.java 50 import android.widget.Button;
81 * Button to record video
83 private Button mButtonVideo;
264 mButtonVideo = (Button) view.findViewById(R.id.video);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsMessagingDemo.java 53 import android.widget.Button;
81 private Button mSendButton;
138 mSendButton = (Button) findViewById(R.id.mms_send_button);
  /development/samples/browseable/Camera2Video/src/com.example.android.camera2video/
Camera2VideoFragment.java 50 import android.widget.Button;
81 * Button to record video
83 private Button mButtonVideo;
264 mButtonVideo = (Button) view.findViewById(R.id.video);
  /external/chromium_org/chrome/browser/ui/views/
content_setting_bubble_contents.cc 29 #include "ui/views/controls/button/label_button.h"
30 #include "ui/views/controls/button/menu_button.h"
31 #include "ui/views/controls/button/radio_button.h"
309 menu_button->SetStyle(views::Button::STYLE_BUTTON);
414 close_button_->SetStyle(views::Button::STYLE_BUTTON);
427 void ContentSettingBubbleContents::ButtonPressed(views::Button* sender,
485 views::MenuButton* button,
487 base::string16 title = button->GetText();
489 int width = button->GetPreferredSize().width();
491 button->SetText(menu_model->GetLabelAt(i))
    [all...]
task_manager_view.cc 32 #include "ui/views/controls/button/label_button.h"
170 virtual void ButtonPressed(views::Button* sender,
367 kill_button_->SetStyle(views::Button::STYLE_BUTTON);
407 // Since we want the Kill button and the Memory Details link to show up in
408 // the same visual row as the close button, which is provided by the
507 views::Button* sender,
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CComboBox.java 42 import org.eclipse.swt.widgets.Button;
68 private Button m_button;
236 * Create arrow button.
239 m_button = new Button(parent, SWT.ARROW | SWT.DOWN);
306 // button
CSpinner.java 23 import org.eclipse.swt.widgets.Button;
57 private final Button m_button;
69 m_button = new Button(this, SWT.ARROW | SWT.DOWN);
  /frameworks/base/core/java/android/accounts/
ChooseTypeAndAccountActivity.java 35 import android.widget.Button;
127 private Button mOkButton;
249 // Only enable "OK" button if something has been selected.
250 mOkButton = (Button) findViewById(android.R.id.button2);
  /frameworks/base/core/java/android/widget/
TimePickerClockDelegate.java 66 // using a button for toggling between AM/PM while the new
69 private final Button mAmPmButton;
153 if (amPmView instanceof Button) {
156 mAmPmButton = (Button) amPmView;
158 public void onClick(View button) {
159 button.requestFocus();
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DatePickerDialog.java 34 import android.widget.Button;
93 private Button mDoneButton;
246 mDoneButton = (Button) view.findViewById(R.id.done);
  /packages/apps/Calculator/src/com/android/calculator2/
Calculator.java 42 import android.widget.Button;
203 // allow the system to handle the Back button.
241 mFormulaEditText.append(((Button) view).getText() + "(");
244 mFormulaEditText.append(((Button) view).getText());
  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactEditorView.java 36 import android.widget.Button;
85 private Button mAddFieldButton;
159 mAddFieldButton = (Button) findViewById(R.id.button_add_field);
309 // Otherwise provide the user with an "add organization" button that shows the
314 // Setup the click listener for the "add organization" button
508 // there's no reason to show the button.

Completed in 1083 milliseconds

<<31323334353637383940>>