Android按钮淡入视图

时间:2012-09-17 09:08:04

标签: android

我想要一个最初不可见的按钮。然后我希望按钮淡入视图

这是我的代码

    <Button
    android:id="@+id/textFade"
    android:layout_width="fill_parent"
    android:layout_height="60dp"
    android:alpha="0"
    android:text="Sample Button" />

然后在我的活动的onCreate函数中添加

    Animation fadeIn = new AlphaAnimation(0, 1);
    fadeIn.setInterpolator(new AccelerateInterpolator()); //add this
    fadeIn.setDuration(1000);

    Button b=(Button)findViewById(R.id.textFade);


    AnimationSet animation = new AnimationSet(false); //change to false
    animation.addAnimation(fadeIn);
    b.setAnimation(animation);

但这不起作用。任何想法我怎么能实现这一目标?

亲切的问候

2 个答案:

答案 0 :(得分:5)

改为使用startAnimation

b.startAnimation(fadeIn);

答案 1 :(得分:1)