HomeSort by relevance Sort by last modified time
    Searched refs:actionButton (Results 1 - 25 of 33) sorted by null

1 2

  /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() {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorCurves.java 64 public void setUtilityPanelUI(View actionButton, View editControl) {
65 super.setUtilityPanelUI(actionButton,editControl);
Editor.java 94 public void setUpEditorUI(View actionButton, View editControl,
100 setUtilityPanelUI(actionButton, editControl);
108 * @param actionButton the would be the area for menu etc
111 public void setUtilityPanelUI(View actionButton, View editControl) {
EditorColorBorder.java 188 public void setUtilityPanelUI(View actionButton, View editControl) {
190 super.setUtilityPanelUI(actionButton, editControl);
EditorCrop.java 148 public void setUtilityPanelUI(View actionButton, View editControl) {
149 super.setUtilityPanelUI(actionButton,editControl);
EditorChanSat.java 172 public void setUtilityPanelUI(View actionButton, View editControl) {
174 super.setUtilityPanelUI(actionButton, editControl);
177 mActionButton = actionButton;
EditorVignette.java 191 public void setUtilityPanelUI(View actionButton, View editControl) {
193 super.setUtilityPanelUI(actionButton, editControl);
196 mActionButton = actionButton;
EditorDraw.java 244 public void setUtilityPanelUI(View actionButton, View editControl) {
246 super.setUtilityPanelUI(actionButton, editControl);
ParametricEditor.java 167 public void setUtilityPanelUI(View actionButton, View editControl) {
168 mActionButton = actionButton;
EditorGrad.java 143 public void setUtilityPanelUI(View actionButton, View editControl) {
145 super.setUtilityPanelUI(actionButton, editControl);
  /development/samples/Support7Demos/src/com/example/android/supportv7/widget/touch/
DragAndDropActivity.java 85 viewHolder.actionButton.setVisibility(mLongPressDragEnabled ? View.GONE : View.VISIBLE);
108 vh.actionButton.setText(R.string.drag);
109 vh.actionButton.setOnTouchListener(new View.OnTouchListener() {
SwipeToDismissActivity.java 99 viewHolder.actionButton.setVisibility(mPointerSwipeEnabled ? View.GONE : View.VISIBLE);
149 vh.actionButton.setText(R.string.swipe);
150 vh.actionButton.setOnTouchListener(new View.OnTouchListener() {
ItemTouchHelperActivity.java 231 public final Button actionButton;
241 actionButton = (Button) itemView.findViewById(R.id.action_button);
  /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 695 final int actionButton = ev.getActionButton();
699 && (actionButton == MotionEvent.BUTTON_STYLUS_PRIMARY
700 || actionButton == MotionEvent.BUTTON_SECONDARY)) {
711 if (mInContextClick && (actionButton == MotionEvent.BUTTON_STYLUS_PRIMARY
712 || actionButton == MotionEvent.BUTTON_SECONDARY)) {
  /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/native/services/inputflinger/
InputListener.cpp 71 int32_t action, int32_t actionButton, int32_t flags, int32_t metaState,
76 action(action), actionButton(actionButton),
89 action(other.action), actionButton(other.actionButton), flags(other.flags),
InputListener.h 87 int32_t actionButton;
103 int32_t action, int32_t actionButton, int32_t flags,
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...]
  /frameworks/native/libs/input/tests/
StructLayout_test.cpp 54 CHECK_OFFSET(InputMessage::Body::Motion, actionButton, 28);
InputPublisherAndConsumer_test.cpp 136 const int32_t actionButton = 0;
167 status = mPublisher->publishMotionEvent(seq, deviceId, source, action, actionButton,
  /frameworks/native/include/input/
InputTransport.h 87 int32_t actionButton;
236 int32_t actionButton,
  /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/
InputTransport.cpp 290 int32_t actionButton,
306 "action=0x%x, actionButton=0x%08x, flags=0x%x, edgeFlags=0x%x, "
311 deviceId, source, action, actionButton, flags, edgeFlags, metaState, buttonState,
332 msg.body.motion.actionButton = actionButton;
927 msg->body.motion.actionButton,
    [all...]

Completed in 1589 milliseconds

1 2