안드로이드
액티비티 화면전환 애니메이션처리
newkie
2011. 4. 6. 13:51
0이면 전환없이 바로 보여줌
public void onResume()
{
overridePendingTransition(0, 0);
super.onResume();
}
0을 딴걸로 바꿀수 있으니 찾아봐도 됨(fade, push_right_in 등등)
public void onResume()
{
overridePendingTransition(0, 0);
super.onResume();
}
0을 딴걸로 바꿀수 있으니 찾아봐도 됨(fade, push_right_in 등등)