91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Android中實現動畫漸隱漸現效果

發布時間:2022-04-19 11:05:29 來源:億速云 閱讀:212 作者:iii 欄目:開發技術

本篇內容主要講解“如何在Android中實現動畫漸隱漸現效果”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何在Android中實現動畫漸隱漸現效果”吧!

四種android動畫效果:

  • alpha         漸變透明度動畫效果

  • scale         漸變尺寸伸縮動畫效果

  •  translate  畫面轉換位置移動動畫效果

  • rotate        畫面轉移旋轉動畫效果

最簡單的莫過于漸變透明效果,單單這一種就可完成漸隱漸現的動畫效果(用于漸現漸隱的可以是整個歡迎頁面也可以是歡迎頁面里的一部分):

1)、 在res里新建anim文件夾用來盛放動畫定義的動作文件:

<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_interpolator">
    <alpha 
      android:fromAlpha="0.0"
      android:toAlpha="1.0"
      android:duration="2000"/>
    <alpha 
      android:fromAlpha="1.0"
      android:toAlpha="0.0"
      android:startOffset="3000"
      android:duration="3000"/>
  
</set>

fromalpha即開始的透明度,toalpha即結束時的透明度,duration為時間(單位毫秒)。

2)、定義布局文件(layout):

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:gravity="center_vertical|center_horizontal"
  android:orientation="vertical" >
 
  <ImageView
    android:id="@+id/welcom_logo"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:src="@drawable/welcome" />
 
</LinearLayout>

這里和以往沒有任何不同,只需對要漸現漸隱的圖片進行id標示。

3)、實現方法(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);//啟動Fill保持
 alphaAnimation.setFillAfter(true);//設置動畫的最后一幀是保留在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) {
 //動畫結束時結束歡迎頁面并跳轉到主頁面
 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){
 //在歡迎頁面屏蔽BACK鍵
 if(KeyCode==KeyEvent.KEYCODE_BACK){
  return false;
 }
 return false;
 
 }
}

到此,相信大家對“如何在Android中實現動畫漸隱漸現效果”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

西贡区| 马边| 宿松县| 台中县| 台东市| 苏尼特右旗| 嵩明县| 曲松县| 忻城县| 文化| 连江县| 务川| 行唐县| 武汉市| 息烽县| 兴海县| 正镶白旗| 巨野县| 南郑县| 温宿县| 保山市| 延长县| 隆昌县| 西昌市| 大竹县| 临武县| 青岛市| 宁晋县| 贵德县| 高唐县| 辉南县| 高清| 湘潭县| 瑞昌市| 聂荣县| 江永县| 五台县| 施秉县| 锡林郭勒盟| 葵青区| 南开区|