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