に子ビューを追加してアニメーション化しようとしてい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);
}
}