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

1 2

  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationTest.java 160 int transitionType = LayoutTransition.APPEARING;
161 mLayoutTransition.setStartDelay(transitionType, delay);
162 assertEquals(delay, mLayoutTransition.getStartDelay(transitionType));
167 int transitionType = LayoutTransition.CHANGE_APPEARING;
168 mLayoutTransition.setStagger(transitionType, duration);
169 assertEquals(duration, mLayoutTransition.getStagger(transitionType));
195 ViewGroup container, View view, int transitionType) {
198 this.mTransitionType = transitionType;
203 ViewGroup container, View view, int transitionType) {
206 this.mTransitionType = transitionType;
    [all...]
  /frameworks/base/core/java/android/animation/
LayoutTransition.java 336 * Enables the specified transitionType for this LayoutTransition object.
341 * {@link #CHANGING} transitionType.
343 * @param transitionType One of {@link #CHANGE_APPEARING}, {@link #CHANGE_DISAPPEARING},
346 public void enableTransitionType(int transitionType) {
347 switch (transitionType) {
367 * Disables the specified transitionType for this LayoutTransition object.
370 * @param transitionType One of {@link #CHANGE_APPEARING}, {@link #CHANGE_DISAPPEARING},
373 public void disableTransitionType(int transitionType) {
374 switch (transitionType) {
394 * Returns whether the specified transitionType is enabled for this LayoutTransition object
    [all...]
  /developers/build/prebuilts/gradle/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
GeofenceTransitionsIntentService.java 78 int transitionType = geoFenceEvent.getGeofenceTransition();
79 if (Geofence.GEOFENCE_TRANSITION_ENTER == transitionType) {
103 } else if (Geofence.GEOFENCE_TRANSITION_EXIT == transitionType) {
SimpleGeofenceStore.java 66 int transitionType = mPrefs.getInt(getGeofenceFieldKey(id, KEY_TRANSITION_TYPE),
73 && transitionType != INVALID_INT_VALUE) {
74 return new SimpleGeofence(id, lat, lng, radius, expirationDuration, transitionType);
  /developers/samples/android/wearable/wear/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
GeofenceTransitionsIntentService.java 78 int transitionType = geoFenceEvent.getGeofenceTransition();
79 if (Geofence.GEOFENCE_TRANSITION_ENTER == transitionType) {
103 } else if (Geofence.GEOFENCE_TRANSITION_EXIT == transitionType) {
SimpleGeofenceStore.java 66 int transitionType = mPrefs.getInt(getGeofenceFieldKey(id, KEY_TRANSITION_TYPE),
73 && transitionType != INVALID_INT_VALUE) {
74 return new SimpleGeofence(id, lat, lng, radius, expirationDuration, transitionType);
  /development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
GeofenceTransitionsIntentService.java 78 int transitionType = geoFenceEvent.getGeofenceTransition();
79 if (Geofence.GEOFENCE_TRANSITION_ENTER == transitionType) {
103 } else if (Geofence.GEOFENCE_TRANSITION_EXIT == transitionType) {
SimpleGeofenceStore.java 66 int transitionType = mPrefs.getInt(getGeofenceFieldKey(id, KEY_TRANSITION_TYPE),
73 && transitionType != INVALID_INT_VALUE) {
74 return new SimpleGeofence(id, lat, lng, radius, expirationDuration, transitionType);
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/
SetupFragment.java 174 public void setFragmentTransition(@FragmentTransitionType int transitionType, int slideEdge) {
175 switch (transitionType) {
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
CardStreamLinearLayout.java 140 view, int transitionType) {
141 Log.d(TAG, "Start LayoutTransition animation:" + transitionType);
146 final View view, int transitionType) {
148 Log.d(TAG, "End LayoutTransition animation:" + transitionType);
149 if (transitionType == LayoutTransition.APPEARING) {
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
CardStreamLinearLayout.java 140 view, int transitionType) {
141 Log.d(TAG, "Start LayoutTransition animation:" + transitionType);
146 final View view, int transitionType) {
148 Log.d(TAG, "End LayoutTransition animation:" + transitionType);
149 if (transitionType == LayoutTransition.APPEARING) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarView.java 117 View view, int transitionType) {
120 } else if (view.getId() == R.id.home && transitionType == LayoutTransition.APPEARING) {
122 mStartDelay = transition.getStartDelay(transitionType);
123 mDuration = transition.getDuration(transitionType);
124 mInterpolator = transition.getInterpolator(transitionType);
130 View view, int transitionType) {
133 } else if (view.getId() == R.id.home && transitionType == LayoutTransition.APPEARING) {
  /libcore/luni/src/test/java/libcore/util/
ZoneInfoTest.java 457 int[] transitionType = transitionTypes[i];
458 int offset = transitionType[0];
459 byte dst = (byte) transitionType[1];
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java     [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
GuidedStepFragment.java     [all...]
GuidedStepSupportFragment.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
ZenModePanel.java     [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 860 View view, int transitionType) { }
864 View view, int transitionType) {
    [all...]
Workspace.java     [all...]
  /frameworks/base/core/java/android/view/
ViewGroup.java     [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 
  /external/robolectric/v1/lib/main/
android.jar 

Completed in 2484 milliseconds

1 2