0

以下は私のコード例です: ビューを膨張させ、膨張させたものだけにアニメーションを追加したいと考えています。現在、レイアウト全体に取り組んでいます。

    LinearLayout lLay = (LinearLayout)this.findViewById(R.id.FirstContact);
    AnimationSet set = new AnimationSet(true);

    Animation animation = new AlphaAnimation(0.0f, 1.0f);
    animation.setDuration(50);
    set.addAnimation(animation);

    animation = new TranslateAnimation(
        Animation.RELATIVE_TO_SELF, 0.0f,Animation.RELATIVE_TO_SELF, 0.0f,
        Animation.RELATIVE_TO_SELF, -1.0f,Animation.RELATIVE_TO_SELF, 0.0f
    );
    animation.setDuration(500);
    set.addAnimation(animation);
    LayoutAnimationController controller = new LayoutAnimationController(set, 0.5f);
    LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                lLay.addView(inflater.inflate(R.layout.genericrelativelayout, null, false), position);
                lLay.setLayoutAnimation(controller);
4

1 に答える 1

1

確かにあなたはただView.setAnimation()あなたの膨らんだ見方を呼びたいだけで、気にしないで LayoutAnimationControllerください?

于 2011-01-26T16:07:22.093 に答える