HomeSort by relevance Sort by last modified time
    Searched defs:actionButton (Results 1 - 16 of 16) 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/com/example/android/supportv7/widget/touch/
SwipeToDismissActivity.java 99 viewHolder.actionButton.setVisibility(mPointerSwipeEnabled ? View.GONE : View.VISIBLE);
151 vh.actionButton.setText(R.string.swipe);
152 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() {
  /external/autotest/frontend/client/src/autotest/moblab/
DutManagementView.java 32 private Button actionButton;
96 actionButton = new Button("Apply", new ClickHandler() {
147 actionRow.add(actionButton);
SuiteRunnerView.java 37 private Button actionButton;
137 actionButton = new Button("Run Suite", new ClickHandler() {
170 actionButton.setEnabled(false);
171 actionButton.setStyleName("run_suite_button");
172 HorizontalPanel seventhLine = createHorizontalLineItem("", actionButton);
202 actionButton.setEnabled(true);
236 actionButton.setEnabled(false);
  /frameworks/native/libs/input/tests/
InputPublisherAndConsumer_test.cpp 138 const int32_t actionButton = 0;
169 status = mPublisher->publishMotionEvent(seq, deviceId, source, displayId, action, actionButton,
  /frameworks/native/services/inputflinger/
InputListener.h 87 int32_t actionButton;
103 int32_t action, int32_t actionButton, int32_t flags,
InputDispatcher.h 513 int32_t actionButton;
528 int32_t action, int32_t actionButton, int32_t flags,
    [all...]
InputDispatcher.cpp 122 static bool isValidMotionAction(int32_t action, int32_t actionButton, int32_t pointerCount) {
141 return actionButton != 0;
147 static bool validateMotionEvent(int32_t action, int32_t actionButton, size_t pointerCount,
149 if (! isValidMotionAction(action, actionButton, pointerCount)) {
    [all...]
InputReader.cpp     [all...]
  /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 700 final int actionButton = ev.getActionButton();
704 && (actionButton == MotionEvent.BUTTON_STYLUS_PRIMARY
705 || actionButton == MotionEvent.BUTTON_SECONDARY)) {
716 if (mInContextClick && (actionButton == MotionEvent.BUTTON_STYLUS_PRIMARY
717 || actionButton == MotionEvent.BUTTON_SECONDARY)) {
  /frameworks/native/include/input/
InputTransport.h 89 int32_t actionButton;
239 int32_t actionButton,
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]

Completed in 960 milliseconds