這篇文章將為大家詳細(xì)講解有關(guān)怎么在Android中實(shí)現(xiàn)動(dòng)畫漸隱漸現(xiàn)效果,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)!專注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了萬(wàn)寧免費(fèi)建站歡迎大家使用!
四種android動(dòng)畫效果:
alpha 漸變透明度動(dòng)畫效果
scale 漸變尺寸伸縮動(dòng)畫效果
translate 畫面轉(zhuǎn)換位置移動(dòng)動(dòng)畫效果
rotate 畫面轉(zhuǎn)移旋轉(zhuǎn)動(dòng)畫效果
最簡(jiǎn)單的莫過(guò)于漸變透明效果,單單這一種就可完成漸隱漸現(xiàn)的動(dòng)畫效果(用于漸現(xiàn)漸隱的可以是整個(gè)歡迎頁(yè)面也可以是歡迎頁(yè)面里的一部分):
1)、 在res里新建anim文件夾用來(lái)盛放動(dòng)畫定義的動(dòng)作文件:
fromalpha即開始的透明度,toalpha即結(jié)束時(shí)的透明度,duration為時(shí)間(單位毫秒)。
2)、定義布局文件(layout):
這里和以往沒(méi)有任何不同,只需對(duì)要漸現(xiàn)漸隱的圖片進(jìn)行id標(biāo)示。
3)、實(shí)現(xiàn)方法(Activity):
public class WelcomeActivity extends Activity implements AnimationListener { private ImageView imageView = null; private Animation alphaAnimation = null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_welcome); imageView = (ImageView) findViewById(R.id.welcom_logo); alphaAnimation = AnimationUtils.loadAnimation(this, R.anim.welcome_alpha); alphaAnimation.setFillEnabled(true);//啟動(dòng)Fill保持 alphaAnimation.setFillAfter(true);//設(shè)置動(dòng)畫的最后一幀是保留在view上的 imageView.setAnimation(alphaAnimation); alphaAnimation.setAnimationListener(this); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.activity_welcome, menu); return true; } @Override public void onAnimationEnd(Animation animation) { //動(dòng)畫結(jié)束時(shí)結(jié)束歡迎頁(yè)面并跳轉(zhuǎn)到主頁(yè)面 Intent intent=new Intent(this,GroupActivity.class); startActivity(intent); this.finish(); } @Override public void onAnimationRepeat(Animation animation) { } @Override public void onAnimationStart(Animation animation) { } public boolean onKeyDown(int KeyCode,KeyEvent event){ //在歡迎頁(yè)面屏蔽BACK鍵 if(KeyCode==KeyEvent.KEYCODE_BACK){ return false; } return false; } }
關(guān)于怎么在Android中實(shí)現(xiàn)動(dòng)畫漸隱漸現(xiàn)效果就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。