冬天來了, 大雪紛飛, 好冷啊. 在應用裡, 也可以實現漫天飛雪的動畫, 讓我來介紹一下吧.
我們的應用也可以有一些冬天的效果, 教大家做一個下雪的動畫效果, 參考.
主要
(1) 隱藏status bar
, 全屏顯示圖片.
(2) 繪製多個點, 重繪頁面, 實現移動效果.
(3) 回收點, 避免重複建立.
我喜歡用註釋說話, 請大家多關注程式碼中的註釋.
本文原始碼的GitHub下載地址
歡迎Follow我的GitHub: https://github.com/SpikeKing
雪花類
雪花的屬性包含: 隨機量, 位置, 增量, 大小, 角度, 畫筆.
繪畫的過程中, 使用角度會移動點的位置, 每次速率都不同.
當雪花移出螢幕時, 會重新使用, 在螢幕的頂端重新落下.
演算法參考.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
/** * 雪花的類, 移動, 移出螢幕會重新設定位置. * <p/> * Created by wangchenlong on 16/1/24. */ public class SnowFlake { // 雪花的角度 private static final float ANGE_RANGE = 0.1f; // 角度範圍 private static final float HALF_ANGLE_RANGE = ANGE_RANGE / 2f; // 一般的角度 private static final float HALF_PI = (float) Math.PI / 2f; // 半PI private static final float ANGLE_SEED = 25f; // 角度隨機種子 private static final float ANGLE_DIVISOR = 10000f; // 角度的分母 // 雪花的移動速度 private static final float INCREMENT_LOWER = 2f; private static final float INCREMENT_UPPER = 4f; // 雪花的大小 private static final float FLAKE_SIZE_LOWER = 7f; private static final float FLAKE_SIZE_UPPER = 20f; private final RandomGenerator mRandom; // 隨機控制器 private final Point mPosition; // 雪花位置 private float mAngle; // 角度 private final float mIncrement; // 雪花的速度 private final float mFlakeSize; // 雪花的大小 private final Paint mPaint; // 畫筆 private SnowFlake(RandomGenerator random, Point position, float angle, float increment, float flakeSize, Paint paint) { mRandom = random; mPosition = position; mIncrement = increment; mFlakeSize = flakeSize; mPaint = paint; mAngle = angle; } public static SnowFlake create(int width, int height, Paint paint) { RandomGenerator random = new RandomGenerator(); int x = random.getRandom(width); int y = random.getRandom(height); Point position = new Point(x, y); float angle = random.getRandom(ANGLE_SEED) / ANGLE_SEED * ANGE_RANGE + HALF_PI - HALF_ANGLE_RANGE; float increment = random.getRandom(INCREMENT_LOWER, INCREMENT_UPPER); float flakeSize = random.getRandom(FLAKE_SIZE_LOWER, FLAKE_SIZE_UPPER); return new SnowFlake(random, position, angle, increment, flakeSize, paint); } // 繪製雪花 public void draw(Canvas canvas) { int width = canvas.getWidth(); int height = canvas.getHeight(); move(width, height); canvas.drawCircle(mPosition.x, mPosition.y, mFlakeSize, mPaint); } // 移動雪花 private void move(int width, int height) { double x = mPosition.x + (mIncrement * Math.cos(mAngle)); double y = mPosition.y + (mIncrement * Math.sin(mAngle)); mAngle += mRandom.getRandom(-ANGLE_SEED, ANGLE_SEED) / ANGLE_DIVISOR; // 隨機晃動 mPosition.set((int) x, (int) y); // 移除螢幕, 重新開始 if (!isInside(width, height)) { reset(width); } } // 判斷是否在其中 private boolean isInside(int width, int height) { int x = mPosition.x; int y = mPosition.y; return x >= -mFlakeSize - 1 && x + mFlakeSize <= width && y >= -mFlakeSize - 1 && y - mFlakeSize < height; } // 重置雪花 private void reset(int width) { mPosition.x = mRandom.getRandom(width); mPosition.y = (int) (-mFlakeSize - 1); // 最上面 mAngle = mRandom.getRandom(ANGLE_SEED) / ANGLE_SEED * ANGE_RANGE + HALF_PI - HALF_ANGLE_RANGE; } } |
隨機數生成器, 包含區間隨機和上界隨機.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
/** * 隨機生成器 * <p/> * Created by wangchenlong on 16/1/24. */ public class RandomGenerator { private static final Random RANDOM = new Random(); // 區間隨機 public float getRandom(float lower, float upper) { float min = Math.min(lower, upper); float max = Math.max(lower, upper); return getRandom(max - min) + min; } // 上界隨機 public float getRandom(float upper) { return RANDOM.nextFloat() * upper; } // 上界隨機 public int getRandom(int upper) { return RANDOM.nextInt(upper); } } |
雪花檢視
雪花檢視, DELAY時間重繪, 繪製NUM_SNOWFLAKES個雪花.
初始化在onSizeChanged中進行, 繪製在onDraw中進行.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
/** * 雪花檢視, DELAY時間重繪, 繪製NUM_SNOWFLAKES個雪花 * <p/> * Created by wangchenlong on 16/1/24. */ public class SnowView extends View { private static final int NUM_SNOWFLAKES = 150; // 雪花數量 private static final int DELAY = 5; // 延遲 private SnowFlake[] mSnowFlakes; // 雪花 public SnowView(Context context) { super(context); } public SnowView(Context context, AttributeSet attrs) { super(context, attrs); } public SnowView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } @TargetApi(21) public SnowView(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { super(context, attrs, defStyleAttr, defStyleRes); } @Override protected void onSizeChanged(int w, int h, int oldw, int oldh) { super.onSizeChanged(w, h, oldw, oldh); if (w != oldw || h != oldh) { initSnow(w, h); } } private void initSnow(int width, int height) { Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG); // 抗鋸齒 paint.setColor(Color.WHITE); // 白色雪花 paint.setStyle(Paint.Style.FILL); // 填充; mSnowFlakes = new SnowFlake[NUM_SNOWFLAKES]; for (int i = 0; i < NUM_SNOWFLAKES; ++i) { mSnowFlakes[i] = SnowFlake.create(width, height, paint); } } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); for (SnowFlake s : mSnowFlakes) { s.draw(canvas); } // 隔一段時間重繪一次, 動畫效果 getHandler().postDelayed(runnable, DELAY); } // 重繪執行緒 private Runnable runnable = new Runnable() { @Override public void run() { invalidate(); } }; } |
使用
getHandler().postDelayed(runnable, DELAY);
重新整理頁面.
全屏佈局
全屏佈局
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CollapsingToolbarLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <FrameLayout android:layout_width="match_parent" android:layout_height="match_parent"> <ImageView android:layout_width="match_parent" android:layout_height="match_parent" android:contentDescription="@null" android:scaleType="centerCrop" android:src="@drawable/christmas"/> <me.chunyu.spike.wcl_snowfall_demo.views.SnowView android:layout_width="match_parent" android:layout_height="match_parent"/> </FrameLayout> </android.support.design.widget.CollapsingToolbarLayout> |
status bar
預設是不會被透明化的, 需要使用CollapsingToolbarLayout
,
替換status bar的樣式, 否則會留有一定高度, 即使透明也不會填充.
樣式
1 2 3 4 5 6 |
<?xml version="1.0" encoding="utf-8"?> <resources> <style name="AppTheme.NoStatusBar"> <item name="android:windowTranslucentStatus">true</item> </style> </resources> |
可以在冬天的時候, 為應用新增些有趣的東西, 讓程式設計更有趣!
OK, that’s all! Enjoy it!
打賞支援我寫出更多好文章,謝謝!
打賞作者
打賞支援我寫出更多好文章,謝謝!