あるぇ・・・

動画にアニメーションを付けれない・・・
LayoutAnimationを使っても出来ないし・・・

とりあえず、Layoutを動かすためのTips。

//アニメーションを設定
Animation animation = new AlphaAnimation(0.0f, 1.0f);
animation.setDuration(3000);
//レイアウト自体にアニメーションをセット。
LayoutAnimationController animationController = 
              new LayoutAnimationController(animation);
//レイアウトにアニメーションをセット
layout.setLayoutAnimation(animationController);
//Delayをセット
animationController.setDelay(0);
//アニメーションを開始
animationController.start();

これでいけないとか・・・