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