如何使用Android中的属性动画增加视图高度?
ObjectAnimator a = ObjectAnimator.ofFloat(viewToIncreaseHeight, "translationY", -100);
a.setInterpolator(new AccelerateDecelerateInterpolator());
a.setDuration(1000);
a.start();
translationY实际上移动视图而不是增加高度。如何增加视图的高度?
答案 0 :(得分:101)
ValueAnimator anim = ValueAnimator.ofInt(viewToIncreaseHeight.getMeasuredHeight(), -100);
anim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator valueAnimator) {
int val = (Integer) valueAnimator.getAnimatedValue();
ViewGroup.LayoutParams layoutParams = viewToIncreaseHeight.getLayoutParams();
layoutParams.height = val;
viewToIncreaseHeight.setLayoutParams(layoutParams);
}
});
anim.setDuration(DURATION);
anim.start();
答案 1 :(得分:16)
您可以使用ViewPropertyAnimator,这可以为您节省一些代码:
yourView.animate().scaleY(-100f).setInterpolator(new AccelerateDecelerateInterpolator()).setDuration(1000);
应该是您所需要的,请务必查看ViewPropertyAnimator的文档和所有可用方法。
答案 2 :(得分:5)
在kotlin中使用此方法:
private fun increaseViewSize(view: View) {
val valueAnimator = ValueAnimator.ofInt(view.measuredHeight, view.measuredHeight+20)
valueAnimator.duration = 500L
valueAnimator.addUpdateListener {
val animatedValue = valueAnimator.animatedValue as Int
val layoutParams = view.layoutParams
layoutParams.height = animatedValue
view.layoutParams = layoutParams
}
valueAnimator.start()
}
答案 3 :(得分:1)
对于kotlin
,您可以使用此方法
private fun increaseViewSize(view: View, increaseValue: Int) {
val valueAnimator =
ValueAnimator.ofInt(view.measuredHeight, view.measuredHeight + increaseValue)
valueAnimator.duration = 500L
valueAnimator.addUpdateListener {
val animatedValue = valueAnimator.animatedValue as Int
val layoutParams = view.layoutParams
layoutParams.height = animatedValue
view.layoutParams = layoutParams
}
valueAnimator.start()
}
它将按照参数中的定义增加视图的大小
基于@Minion答案
答案 4 :(得分:0)
这不是此问题的直接答案。但是,这可能会对某人有所帮助。
有时候,我们想增加/减少视图的高度,因为正在添加/删除其某些子视图(或只是变得可见/消失)。
在这种情况下,您确实可以使用Android默认动画。如其他答案所述,您可以通过以下方式进行设置:
<LinearLayout
...
android:animateLayoutChanges="true"
.../>
或使用Java:
linearLayout.setLayoutTransition(new LayoutTransition());
如果您创建了自定义视图:
public StickerPickerView(final Context context, final AttributeSet attrs,
final int defStyleAttr) {
super(context, attrs, defStyleAttr);
setLayoutTransition(new LayoutTransition());
}
对我来说,这非常令人满意,但是我只是在最新的API上进行了测试。当您的视图变为可见时,它将自动添加淡入/淡出。当相同的更改(例如,更改子视图之一的可见性等时)时,它还将为视图的高度/宽度设置动画。
所以,我建议至少尝试一下。
答案 5 :(得分:0)
这是我的代码,用于在recycleView内使项目滚动到屏幕中心
// Scrolling with animation
val valueAnimator = ValueAnimator.ofInt(getWidth() / 2)
valueAnimator.duration = 250L
valueAnimator.addUpdateListener {
val animatedValue = valueAnimator.animatedValue as Int
(layoutManager as LinearLayoutManager).scrollToPositionWithOffset(itemToScroll, animatedValue)
}
valueAnimator.start()
// End of scrolling with animation
请注意,它与Swift中的 UIView.animate 有点相似,但更为复杂
答案 6 :(得分:0)
fun View.animateHeightFromTo(initialHeight: Int, finalHeight: Int) {
val animator = ValueAnimator.ofInt(initialHeight, finalHeight)
animator.duration = 250
animator.addUpdateListener {
val value = it.animatedValue as Int
val lp = this.layoutParams
lp.height = value
this.layoutParams = lp
isVisible = value != 0
}
animator.start()
}
可见性设置对我来说很方便,但你可能不想要
答案 7 :(得分:-1)
这很简单,如下所示。
<LinearLayout android:id="@+id/container"
android:animateLayoutChanges="true"
.../>
以下更多信息: