Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> android 組件動畫(一)——球的進入效果

android 組件動畫(一)——球的進入效果

編輯:Android開發實例

首先看看效果:

 

// 寬和高

private int width = 100;

private int height = 100;

其實獲取屏幕寬高的原因是為了適應android多種屏幕的變化,雖然很多時候可以用xml裡的dip定位,但是更多時候卻需要動態添加一些組件,然而在代碼裡面設置的值都是以xp來計算的,這樣做出來的軟件或者游戲根本就不能很好的適應屏幕。所以,如果不通過xml布局而要動態解決,那我覺得軟件界面的設計主要就是自己將界面寬高各分成十份(當然這裡分的粒度越少界面控制得越精細,不過管理起來也較為麻煩),然後在根據需要給它以寬和高。我也是說說自己做這些的感想,如果大家有更好的建議,不吝請教^-^ 

//例子

private String list = "3 5 7 9 0 43";

//要給組件的動畫的集合

private static final int[] INTERPOLATORS = {

           android.R.anim.accelerate_interpolator,

           android.R.anim.decelerate_interpolator,

           android.R.anim.accelerate_decelerate_interpolator,

           android.R.anim.anticipate_interpolator,

           android.R.anim.overshoot_interpolator,

           android.R.anim.anticipate_overshoot_interpolator,

           android.R.anim.bounce_interpolator };

/////////balls_item.xml

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="fill_parent" android:layout_height="fill_parent"

    android:orientation="horizontal">

 

    <LinearLayout android:layout_width="fill_parent"

       android:layout_height="wrap_content" android:orientation="horizontal"

       android:id="@+id/layout" android:paddingRight="35dip"></LinearLayout>

 

    <ImageView android:id="@+id/delete" android:scaleType="fitXY"

       android:src="@drawable/delete" android:layout_width="30dip"

       android:layout_height="30dip" android:layout_alignParentRight="true">

    </ImageView>

</RelativeLayout>

/////////testBallSliding.java

public void onCreate(Bundle savedInstanceState) {

       super.onCreate(savedInstanceState);

      

       setContentView(R.layout.balls_item);

 

       width = getWindowManager().getDefaultDisplay().getWidth();

       height = getWindowManager().getDefaultDisplay().getHeight();

 

       LinearLayout layout = (LinearLayout) findViewById(R.id.layout);

 

       String[] buttons = list.split(" ");

      

      

       for (int i = 0; i < buttons.length; i++) {

           Button button = new Button(this);

           button.setPadding(2, 2, 2, 2);

           //這裡就是控制動畫的顯示位置

           Animation animation = new TranslateAnimation(width + 50, i * 40, 0,

                  0);

//設置動畫的運動效果

           animation.setInterpolator(getApplicationContext(), INTERPOLATORS[i

                  % INTERPOLATORS.length]);

           animation.setDuration(4000 - 50 * i);

           button.setAnimation(animation);

 

           button.setText(buttons[i]);

           button.setBackgroundResource(R.drawable.redball);

 

           ImageView delete = (ImageView) findViewById(R.id.delete);

           // 刪除的監聽

           // .........

          

           layout.addView(button,new LayoutParams(40, 40));

       }

 

    }

這裡先介紹簡單為後面的內容做一下鋪墊。

代碼下載

testBallSliding.zip

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved