<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
效果:水波紋擴散
場景:雷達、按鈕點選效果、搜尋等
實現:先上效果圖,之前記得支付寶有一個咻一咻,當時就是水波紋效果,實現起來一共兩步,第一畫內圓,第二畫多個外圓,不同時建立有間隔建立然後緩慢增大外圓半徑,到達最遠距離時移除掉,擴散時把透明度從255-1不斷賦值即可。複雜在第二步,開工。
開工
RippleView主要初始化一些資料,
onSizeChanged主要獲取位置座標
onDraw主要繪製影象,關鍵
public class RippleView extends View { public RippleView(Context context) { this(context, null); } public RippleView(Context context, @Nullable AttributeSet attrs) { //this(context, null, 0);//如果第二個引數寫null,則自定義屬性將不可用 this(context, attrs, 0); } public RippleView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); ........ } <br> @Override protected void onSizeChanged(int w, int h, int oldw, int oldh) { super.onSizeChanged(w, h, oldw, oldh); ........ } @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); ........ } }
alpha陣列:目的是讓每個外圓(擴散圓)透明度從不透明到透明(255-1)
spreadRadius:擴散圓的半徑是遞增的
private Paint centerPaint; //中心圓paint private int radius = 100; //中心圓半徑 private Paint spreadPaint; //擴散圓paint private float centerX;//圓心x private float centerY;//圓心y private int distance = 5; //每次圓遞增間距 private int maxRadius = 80; //最大圓半徑 private int delayMilliseconds = 30;//擴散延遲間隔,越大擴散越慢 private List<Integer> spreadRadius = new ArrayList<>();//擴散圓層級數,元素為擴散的距離 private List<Integer> alphas = new ArrayList<>();//對應每層圓的透明度
我們需要在xml中使用自定義屬性來控制初始值,如內圓半徑,擴散顏色,內圓顏色等
<resources> <declare-styleable name="SpreadView"> <!--中心圓顏色--> <attr name="spread_center_color" format="color" /> <!--中心圓半徑--> <attr name="spread_radius" format="integer" /> <!--擴散圓顏色--> <attr name="spread_spread_color" format="color" /> <!--擴散間距--> <attr name="spread_distance" format="integer" /> <!--擴散最大半徑--> <attr name="spread_max_radius" format="integer" /> <!--擴散延遲間隔--> <attr name="spread_delay_milliseconds" format="integer" /> </declare-styleable> </resources>
在RippleView中拿到值
public RippleView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.SpreadView, defStyleAttr, 0); radius = typedArray.getInt(R.styleable.SpreadView_spread_radius, radius); maxRadius = typedArray.getInt(R.styleable.SpreadView_spread_max_radius, maxRadius); int centerColor = typedArray.getColor(R.styleable.SpreadView_spread_center_color, ContextCompat.getColor(context, android.R.color.holo_red_light)); int spreadColor = typedArray.getColor(R.styleable.SpreadView_spread_spread_color, ContextCompat.getColor(context, R.color.color_F71816)); distance = typedArray.getInt(R.styleable.SpreadView_spread_distance, distance); typedArray.recycle(); }
context.obtainStyledAttributes可以獲取我們在xml檔案的屬性值,最後typedArray.recycle();釋放掉,為什麼釋放掉這也是一個學問,自行百度。
centerColor為內圓顏色,
spreadColor擴散顏色
public RippleView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); ..... //中心圓 centerPaint = new Paint(); centerPaint.setColor(centerColor);<br> //消除鋸齒 centerPaint.setAntiAlias(true); //水波紋擴散 spreadPaint = new Paint(); spreadPaint.setColor(spreadColor); spreadPaint.setAntiAlias(true);<br> //填充和描邊,上面2張圖片效果不同取決於該屬性 spreadPaint.setStyle(Paint.Style.STROKE); spreadPaint.setAlpha(255); //初始化第一個水波紋,擴散半徑為0,透明度為255(不透明) spreadRadius.add(0); alphas.add(255); } /**在控制元件大小發生改變時呼叫。所以這裡初始化會被呼叫一次*/<br>@Override<br>protected void onSizeChanged(int w, int h, int oldw, int oldh) {<br> super.onSizeChanged(w, h, oldw, oldh);<br> //圓心位置<br> centerX = w / 2;<br> centerY = h / 2;<br> }
我們已經做了好前奏,剩下的就開始繪製了,首先我們要確定幾個圓才能形成水波紋效果,1,2還是3,不確定那就先從一個開始,spreadRadius我們在建立畫筆時已經新增了一個圓,那我們就遍歷spreadRadius陣列,透明度alphas[i]把值遞減(255-1),spreadRadius[i]圓半徑遞增,圓數量超過8個就移除第1個,如果最外圓擴散半徑達到最大半徑時新增新擴散圓。最後通過postInvalidateDelayed(30),延遲重新整理來達到擴散的樣式。
@Override protected void onDraw(Canvas canvas) { super.onDraw(canvas); for (int i = 0; i < spreadRadius.size(); i++) { //透明度 int alpha = alphas.get(i); //半徑 int width = spreadRadius.get(i); spreadPaint.setAlpha(alpha); //繪製擴散的圓 canvas.drawCircle(centerX, centerY, radius + width, spreadPaint); if (alpha > 0 && width < 255) { //遞減 alpha = (alpha - distance) > 0 ? (alpha - distance) : 1; alphas.set(i, alpha); //遞增 spreadRadius.set(i, width + distance); } } if (spreadRadius.get(spreadRadius.size() - 1) > maxRadius) { spreadRadius.add(0); alphas.add(255); } if (spreadRadius.size() > 8) { spreadRadius.remove(0); alphas.remove(0); } //中間的圓 canvas.drawCircle(centerX, centerY, radius, centerPaint); //延遲更新,達到擴散視覺差效果 postInvalidateDelayed(delayMilliseconds); }
到此這篇關於Android自定義View實現水波紋擴散效果的文章就介紹到這了,更多相關Android水波紋擴散內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45