Merge "Add getter for animateFirstView property of ViewAnimator" into jb-mr1-dev
This commit is contained in:
@@ -29583,6 +29583,7 @@ package android.widget {
|
|||||||
public class ViewAnimator extends android.widget.FrameLayout {
|
public class ViewAnimator extends android.widget.FrameLayout {
|
||||||
ctor public ViewAnimator(android.content.Context);
|
ctor public ViewAnimator(android.content.Context);
|
||||||
ctor public ViewAnimator(android.content.Context, android.util.AttributeSet);
|
ctor public ViewAnimator(android.content.Context, android.util.AttributeSet);
|
||||||
|
method public boolean getAnimateFirstView();
|
||||||
method public android.view.View getCurrentView();
|
method public android.view.View getCurrentView();
|
||||||
method public int getDisplayedChild();
|
method public int getDisplayedChild();
|
||||||
method public android.view.animation.Animation getInAnimation();
|
method public android.view.animation.Animation getInAnimation();
|
||||||
|
|||||||
@@ -328,9 +328,22 @@ public class ViewAnimator extends FrameLayout {
|
|||||||
setOutAnimation(AnimationUtils.loadAnimation(context, resourceID));
|
setOutAnimation(AnimationUtils.loadAnimation(context, resourceID));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns whether the current View should be animated the first time the ViewAnimator
|
||||||
|
* is displayed.
|
||||||
|
*
|
||||||
|
* @return true if the current View will be animated the first time it is displayed,
|
||||||
|
* false otherwise.
|
||||||
|
*
|
||||||
|
* @see #setAnimateFirstView(boolean)
|
||||||
|
*/
|
||||||
|
public boolean getAnimateFirstView() {
|
||||||
|
return mAnimateFirstTime;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Indicates whether the current View should be animated the first time
|
* Indicates whether the current View should be animated the first time
|
||||||
* the ViewAnimation is displayed.
|
* the ViewAnimator is displayed.
|
||||||
*
|
*
|
||||||
* @param animate True to animate the current View the first time it is displayed,
|
* @param animate True to animate the current View the first time it is displayed,
|
||||||
* false otherwise.
|
* false otherwise.
|
||||||
|
|||||||
Reference in New Issue
Block a user