Androidでいくつかのアニメーションを含むシンプルなアプリを作成しました。私のレイアウトには、sourceImage とボタンを含む ImageView があります。ボタンをクリックすると、同時に移動とサイズ変更が必要になります。ObjectAnimator と ValueAnimator を使用してアニメーションを作成し、animatorSet と一緒に再生しました。私の問題は、ボタンがスムーズに動かないことです。Transitions Everywhere や APIDemos などのいくつかのアニメーション ライブラリを確認しました。これらのライブラリで ImageBackground を設定すると、ビューがスムーズに移動できず、すべてに問題があります。誰でもこの問題を解決するのを手伝ってもらえますか?
私のレイアウトコード:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/imageview"
android:fitsSystemWindows="true"
android:src="@drawable/image"
android:scaleType="fitXY" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/frame">
<Button
android:layout_width="100dp"
android:layout_height="45dp"
android:id="@+id/btn_start"
android:layout_gravity="center_horizontal|bottom"
android:gravity="center_vertical|center_horizontal"
android:textAllCaps="false"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="Start" />
// ....................
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>
私のアニメーションコード:
btn_start.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
ButtonAnimation();
}
});
private void ButtonAnimation() {
Animator moveButtonAnimY = ObjectAnimator.ofFloat(btn_start, "translationY", 0, 200)
.setDuration(500);
final ValueAnimator valueAnimator = ValueAnimator.ofFloat(width_btn_start, width_btn_start * 2.0f);
valueAnimator.setDuration(500);
valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
public void onAnimationUpdate(ValueAnimator animation) {
Integer value = (Integer) animation.getAnimatedValue();
btn_start.getLayoutParams().width = value.intValue();
btn_start.requestLayout();
}
});
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(moveButtonAnimY, valueAnimator);
animatorSet.start();
}