1

に子ビューを追加してアニメーション化しようとしていLinearLayoutます。これを行うためのより良い方法があるかどうか、またはこのアプローチに欠点があるかどうかを知りたいだけです。

そして、この投稿が役に立った場合は、賛成票を投じることを忘れないでください:)

これが私がしたことです:

public class CardLayout extends LinearLayout {

    public CardLayout(Context context) {
        super(context);
        initLayoutObserver();
    }

    public CardLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
        initLayoutObserver();
    }

    @Override
    public void addView(View child) {
        super.addView(child);
        Animation animation = AnimationUtils.loadAnimation(getContext(), R.anim.slide_up_in);
        animation.setStartOffset(getChildCount() * 100 + getResources().getInteger(R.integer.screen_transition_time_fade_in));
        child.startAnimation(animation);
    }

}
4

0 に答える 0