1
我想要一個原本不可見的按鈕。然後,我希望按鈕淡出眼簾淡入視圖的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);
但是,這是行不通的。任何想法如何我可以實現這一目標?
親切的問候