Android編程實(shí)現(xiàn)文字倒影效果的方法
本文實(shí)例講述了Android編程實(shí)現(xiàn)文字倒影效果的方法。分享給大家供大家參考,具體如下:
我們所有的view都繼承自View類,View類里有個(gè)方法叫ondraw(). 即,我們看到的界面都是畫出來的,所以我們可以重寫ondraw()方法。
既然知道了這點(diǎn)就好辦了,還有個(gè)難點(diǎn)就是,我們的倒影也是畫出來的,那我們從哪去取原始圖片呢?熟悉View的童鞋都知道Cache這個(gè)東西,不錯(cuò),就是通過Cache我們?nèi)〉搅嗽紙D片。
放源碼了。,感謝期待。這個(gè)只是個(gè)demo,并不完善哈,布局什么的還需要調(diào)整下,或者我什么時(shí)候有空再進(jìn)行一次封裝,就可以直接從布局文件中任意調(diào)整了。
布局文件中增加如下代碼
<com.tc.reflect.ReflectTextView android:layout_marginTop="20dp" android:id="@+id/test_reflect" android:layout_width="fill_parent" android:layout_height="50dp" android:textSize="25dp" android:textColor="#ff0000" android:textStyle="bold" android:gravity="top|center_horizontal" android:text="不會(huì)飛翔的翅膀 XP.C" /> <com.tc.reflect.ReflectTextView android:layout_marginTop="20dp" android:id="@+id/test_reflect" android:layout_width="fill_parent" android:layout_height="50dp" android:textSize="25dp" android:textColor="#a0a0a0" android:textStyle="italic" android:gravity="top|center_horizontal" android:text="titanchen2000@yahoo.com.cn" />
類代碼如下:
/* * Copyright (C) 2011 TC Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language governing permissions and limitations under the * License. This code is base on the Android TextView and was Created by titanchen2000@yahoo.com.cn * * @author TC */ package com.tc.reflect; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas; import android.graphics.LinearGradient; import android.graphics.Matrix; import android.graphics.Paint; import android.graphics.PorterDuffXfermode; import android.graphics.PorterDuff.Mode; import android.graphics.Shader.TileMode; import android.util.AttributeSet; import android.widget.TextView; public class ReflectTextView extends TextView { public ReflectTextView(Context context) { super(context); } public ReflectTextView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public ReflectTextView(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onDraw(Canvas canvas) { //draw the text from layout() super.onDraw(canvas); int height = getHeight(); int width = getWidth(); //make the shadow reverse of Y Matrix matrix = new Matrix(); matrix.preScale(1, -1); //make sure you can use the cache setDrawingCacheEnabled(true); //create bitmap from cache,this is the most important of this Bitmap originalImage = Bitmap.createBitmap(getDrawingCache()); //create the shadow Bitmap reflectionImage = Bitmap.createBitmap(originalImage, 0, height / 3, width, height / 3, matrix, false); //draw the shadow canvas.drawBitmap(reflectionImage, 0, 8 * height / 12, null); //process shadow bitmap to make it shadow like Paint paint = new Paint(); LinearGradient shader = new LinearGradient(0, 8 * height / 12, 0, height, 0x70ffffff, 0x00ffffff, TileMode.CLAMP); paint.setShader(shader); paint.setXfermode(new PorterDuffXfermode(Mode.DST_IN)); canvas.drawRect(0, 8 * height / 12, width, height, paint); } }
更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android圖形與圖像處理技巧總結(jié)》、《Android開發(fā)入門與進(jìn)階教程》、《Android調(diào)試技巧與常見問題解決方法匯總》、《Android基本組件用法總結(jié)》、《Android視圖View技巧總結(jié)》、《Android布局layout技巧總結(jié)》及《Android控件用法總結(jié)》
希望本文所述對(duì)大家Android程序設(shè)計(jì)有所幫助。
- 控制Android LED燈顏色的代碼實(shí)例
- 詳解Android應(yīng)用層制作LED指示燈
- Android實(shí)現(xiàn)文字和圖片混排(文字環(huán)繞圖片)效果
- android顯示TextView文字的倒影效果實(shí)現(xiàn)代碼
- Android實(shí)現(xiàn)文字翻轉(zhuǎn)動(dòng)畫的效果
- Android實(shí)現(xiàn)文字滾動(dòng)效果
- Android自定義Dialog實(shí)現(xiàn)文字動(dòng)態(tài)加載效果
- Android中使用TextView實(shí)現(xiàn)文字跑馬燈效果
- Android Shader應(yīng)用開發(fā)之霓虹閃爍文字效果
- Android編程實(shí)現(xiàn)類似天氣預(yù)報(bào)圖文字幕垂直滾動(dòng)效果的方法
- Android基于ViewFilpper實(shí)現(xiàn)文字LED顯示效果示例
相關(guān)文章
Android仿iOS實(shí)現(xiàn)側(cè)滑返回功能(類似微信)
這篇文章主要為大家詳細(xì)介紹了Android仿iOS實(shí)現(xiàn)側(cè)滑返回功能,類似微信功能,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2017-12-12AndroidStudio簡(jiǎn)單實(shí)現(xiàn)BMI計(jì)算
這篇文章主要為大家詳細(xì)介紹了AndroidStudio簡(jiǎn)單實(shí)現(xiàn)BMI計(jì)算,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2021-04-04python只需30行代碼就能記錄鍵盤的一舉一動(dòng)
這篇文章主要介紹了如何用python只寫30行代碼就能記錄鍵盤的一舉一動(dòng),感興趣的同學(xué)快來看看吧,新手小白也能掌握2021-08-08Android TableLayout數(shù)據(jù)列表的回顯清空實(shí)現(xiàn)思路及代碼
數(shù)據(jù)列表的回顯必須從后面減去子元素同時(shí)必須從后面減去子元素,感興趣的朋友可以看下具體的實(shí)現(xiàn)代碼,希望對(duì)你學(xué)習(xí)Android TableLayout有所幫助2013-04-04Android PullToRefreshLayout下拉刷新控件的終結(jié)者
這篇文章主要介紹了Android自定義控件實(shí)戰(zhàn)中下拉刷新控件終結(jié)者PullToRefreshLayout的實(shí)現(xiàn)方法,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-03-03Android程序開發(fā)之動(dòng)態(tài)設(shè)置ImageView的亮度
這篇文章主要介紹了Android程序開發(fā)之動(dòng)態(tài)設(shè)置ImageView的亮度 的相關(guān)資料,需要的朋友可以參考下2016-01-01Android開發(fā)實(shí)現(xiàn)Fragment監(jiān)聽返回鍵事件功能的方法
這篇文章主要介紹了Android開發(fā)實(shí)現(xiàn)Fragment監(jiān)聽返回鍵事件功能的方法,結(jié)合實(shí)例形式分析了Android使用Fragment監(jiān)聽并屏蔽返回鍵按鈕的實(shí)現(xiàn)方法與相關(guān)操作技巧,需要的朋友可以參考下2017-11-11