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

1 2

  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
TouchableAction.java 21 import com.badlogic.gdx.scenes.scene2d.Touchable;
23 /** Sets the actor's {@link Actor#setTouchable(Touchable) touchability}.
26 private Touchable touchable; field in class:TouchableAction
29 target.setTouchable(touchable);
33 public Touchable getTouchable () {
34 return touchable;
37 public void setTouchable (Touchable touchable) {
38 this.touchable = touchable;
    [all...]
Actions.java 24 import com.badlogic.gdx.scenes.scene2d.Touchable;
297 static public TouchableAction touchable (Touchable touchable) { method in class:Actions
299 action.setTouchable(touchable);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowPopupWindow.java 23 private boolean touchable; field in class:ShadowPopupWindow
87 public void setTouchable(boolean touchable) {
88 this.touchable = touchable;
93 return touchable;
97 public void setOutsideTouchable(boolean touchable) {
98 outSideTouchable = touchable;
  /frameworks/base/core/java/android/view/
FocusFinder.java 507 * Find the nearest touchable view to the specified view.
515 * @return The nearest touchable view, or null if none exists.
530 View touchable = touchables.get(i); local
533 touchable.getDrawingRect(touchableBounds);
535 root.offsetRectBetweenParentAndChild(touchable, touchableBounds, true, true);
564 closest = touchable;
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Actor.java 64 private Touchable touchable = Touchable.enabled; field in class:Actor
197 /** Returns the deepest actor that contains the specified point and is {@link #getTouchable() touchable} and
205 * @param touchable If true, the hit detection will respect the {@link #setTouchable(Touchable) touchability}.
206 * @see Touchable */
207 public Actor hit (float x, float y, boolean touchable) {
208 if (touchable && this.touchable != Touchable.enabled) return null;
    [all...]
  /external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar 
shadows-core-3.1-SNAPSHOT-17.jar 
shadows-core-3.1-SNAPSHOT-18.jar 
shadows-core-3.1-SNAPSHOT-19.jar 
shadows-core-3.1-SNAPSHOT-21.jar 
shadows-core-3.1-SNAPSHOT-22.jar 
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/sdk/4/
android.jar 

Completed in 315 milliseconds

1 2