HomeSort by relevance Sort by last modified time
    Searched defs:actionButton (Results 1 - 17 of 17) sorted by null

  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
PrintErrorFragment.java 72 Button actionButton = (Button) view.findViewById(R.id.action_button);
77 actionButton.setVisibility(View.VISIBLE);
78 actionButton.setText(R.string.print_error_retry);
82 actionButton.setVisibility(View.GONE);
86 actionButton.setOnClickListener(new OnClickListener() {
  /external/autotest/frontend/client/src/autotest/tko/
SavedQueriesControl.java 52 public Button actionButton, cancelButton;
64 actionButton = new Button(actionString);
66 buttonPanel.add(actionButton);
86 addQueryDialog.actionButton.addClickHandler(this);
89 deleteQueryDialog.actionButton.addClickHandler(this);
146 if (event.getSource() == addQueryDialog.actionButton) {
159 assert event.getSource() == deleteQueryDialog.actionButton;
  /frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/touch/
SwipeToDismissActivity.java 94 viewHolder.actionButton.setVisibility(mPointerSwipeEnabled ? View.GONE : View.VISIBLE);
144 vh.actionButton.setText(R.string.swipe);
145 vh.actionButton.setOnTouchListener(new View.OnTouchListener() {
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
Card.java 567 Button actionButton = (Button) action.actionView.findViewById(R.id.card_button);
569 actionButton.setText(action.label);
570 actionButton.setOnClickListener(new View.OnClickListener() {
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
Card.java 567 Button actionButton = (Button) action.actionView.findViewById(R.id.card_button);
569 actionButton.setText(action.label);
570 actionButton.setOnClickListener(new View.OnClickListener() {
  /frameworks/native/libs/input/tests/
InputPublisherAndConsumer_test.cpp 139 const int32_t actionButton = 0;
170 status = mPublisher->publishMotionEvent(seq, deviceId, source, displayId, action, actionButton,
  /frameworks/native/services/inputflinger/
InputListener.h 87 int32_t actionButton;
110 int32_t action, int32_t actionButton, int32_t flags,
InputDispatcher.h 512 int32_t actionButton;
527 int32_t action, int32_t actionButton, int32_t flags,
    [all...]
InputDispatcher.cpp 161 static bool isValidMotionAction(int32_t action, int32_t actionButton, int32_t pointerCount) {
180 return actionButton != 0;
186 static bool validateMotionEvent(int32_t action, int32_t actionButton, size_t pointerCount,
188 if (! isValidMotionAction(action, actionButton, pointerCount)) {
    [all...]
InputReader.cpp     [all...]
  /external/autotest/frontend/client/src/autotest/moblab/
DutManagementView.java 32 private Button actionButton;
119 actionButton = new Button("Apply", new ClickHandler() {
198 actionRow.add(actionButton);
SuiteRunnerView.java 40 private Button actionButton;
161 actionButton = new Button("Run Suite", new ClickHandler() {
197 actionButton.setEnabled(false);
198 actionButton.setStyleName("run_suite_button");
199 HorizontalPanel seventhLine = createHorizontalLineItem("", actionButton);
231 actionButton.setEnabled(true);
273 actionButton.setEnabled(false);
  /frameworks/base/core/java/android/view/
InputEventConsistencyVerifier.java 474 final int actionButton = event.getActionButton();
497 if ((mButtonsPressed & actionButton) != 0) {
499 actionButton + ", but it has already been pressed and " +
503 mButtonsPressed |= actionButton;
508 if (actionButton == MotionEvent.BUTTON_STYLUS_PRIMARY &&
511 } else if (actionButton == MotionEvent.BUTTON_STYLUS_SECONDARY &&
525 if ((mButtonsPressed & actionButton) != actionButton) {
527 actionButton + ", but it was either never pressed or has " +
531 mButtonsPressed &= ~actionButton;
    [all...]
GestureDetector.java 701 final int actionButton = ev.getActionButton();
705 && (actionButton == MotionEvent.BUTTON_STYLUS_PRIMARY
706 || actionButton == MotionEvent.BUTTON_SECONDARY)) {
717 if (mInContextClick && (actionButton == MotionEvent.BUTTON_STYLUS_PRIMARY
718 || actionButton == MotionEvent.BUTTON_SECONDARY)) {
View.java     [all...]
  /frameworks/native/include/input/
InputTransport.h 88 int32_t actionButton;
238 int32_t actionButton,
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]

Completed in 247 milliseconds