FrameLayout layoutView = new FrameLayout(m_activity, null, android.R.style.Theme_Translucent_NoTitleBar_Fullscreen)

    Animation animation = new TranslateAnimation(0.0f, 0.0f, 200, 0);

    animation.setAnimationListener(listener);

    animation.setDuration( 400 );

    animation.setInterpolator( new AccelerateInterpolator() );

    

layoutView.setAnimation(animation);


위와 같이 했는데요. 레이아웃에 웹뷰를 add시키고 layout을 애니매이션 처리하였는데 작동을 하지 않습니다. 

그리고 액티비티에서 화면에 띄워지는 식으로 하기 위해 rootLayout을 사용했습니다. 코드는 아래와 같습니다.

FrameLayout rootLayout = (FrameLayout)activity.getWindow().findViewById(android.R.id.content);

rootLayout.addView(layoutView);


화면 아래에서 올라오도록 처리 했는데 디버깅을 하면 올라왓다 사라지는것같은데 작동하지 않네요 .. 

웃긴건 다른 OS에서는 문제 없이 작동하는데 android 4.1 젤리빈에서만 작동을 안합니다.


도와주세요 ㅠㅠ 


머리가 아픕니다 ㅠㅠ