我正在尝试使用ConstraintLayout
作为根布局来实现调整大小的动画。
这是我的代码:
AdditiveAnimator().targets(waveView).setDuration(2000)
.height((waveView.height.toFloat()*1.5f).toInt())
.width((waveView.width.toFloat()*1.5).toInt())
.setInterpolator( DecelerateInterpolator())
.setRepeatCount(Animation.INFINITE)
.start()
请注意,这是第三方动画库。
这是我的XML视图:
<View
android:id="@+id/wave_view"
android:layout_width="@dimen/_160sdp"
android:layout_height="@dimen/_160sdp"
android:background="@drawable/wave_background"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.35"
/>
这将导致动画不平衡。我的意思是:
现在,当我消除偏见时,结果是:
我应该怎么做才能获得预期的结果。我应该使用其他根布局吗?