如何使用动画启动应用程序主要活动

时间:2015-07-23 22:35:29

标签: android

当onCreate()方法调用??

时,如何通过Translate Animation显示我的对象

我在onCreate()上的setContentView()之后调用了这个方法但是没有用! 请帮帮我,请不要给我否定点!

 public void startAnimation(){
    LinearLayout header=(LinearLayout) findViewById(R.id.layout_main_header);
    LinearLayout onOff=(LinearLayout) findViewById(R.id.layout_main_onoff);
    LinearLayout social=(LinearLayout) findViewById(R.id.social_layer);
    LinearLayout netwo=(LinearLayout) findViewById(R.id.network_layer);
    Animation in_1=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.in_1);
    Animation in_2=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.in_2);
    Animation in_3=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.in_3);
    Animation in_4=AnimationUtils.loadAnimation(getApplicationContext(),R.anim.in_4);
    header.startAnimation(in_1);
    onOff.startAnimation(in_2);
    social.startAnimation(in_3);
    netwo.startAnimation(in_4);
}

1 个答案:

答案 0 :(得分:0)

在您的代码中没有任何错误请展示您的动画的xml和showme xml您的活动

注意:将代码从方法移到onCreate()