Android編程實現(xiàn)文字倒影效果的方法
本文實例講述了Android編程實現(xiàn)文字倒影效果的方法。分享給大家供大家參考,具體如下:
我們所有的view都繼承自View類,View類里有個方法叫ondraw(). 即,我們看到的界面都是畫出來的,所以我們可以重寫ondraw()方法。
既然知道了這點就好辦了,還有個難點就是,我們的倒影也是畫出來的,那我們從哪去取原始圖片呢?熟悉View的童鞋都知道Cache這個東西,不錯,就是通過Cache我們?nèi)〉搅嗽紙D片。
放源碼了。,感謝期待。這個只是個demo,并不完善哈,布局什么的還需要調(diào)整下,或者我什么時候有空再進(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="不會飛翔的翅膀 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é)》
希望本文所述對大家Android程序設(shè)計有所幫助。
- 控制Android LED燈顏色的代碼實例
- 詳解Android應(yīng)用層制作LED指示燈
- Android實現(xiàn)文字和圖片混排(文字環(huán)繞圖片)效果
- android顯示TextView文字的倒影效果實現(xiàn)代碼
- Android實現(xiàn)文字翻轉(zhuǎn)動畫的效果
- Android實現(xiàn)文字滾動效果
- Android自定義Dialog實現(xiàn)文字動態(tài)加載效果
- Android中使用TextView實現(xiàn)文字跑馬燈效果
- Android Shader應(yīng)用開發(fā)之霓虹閃爍文字效果
- Android編程實現(xiàn)類似天氣預(yù)報圖文字幕垂直滾動效果的方法
- Android基于ViewFilpper實現(xiàn)文字LED顯示效果示例
相關(guān)文章
Android仿iOS實現(xiàn)側(cè)滑返回功能(類似微信)
這篇文章主要為大家詳細(xì)介紹了Android仿iOS實現(xiàn)側(cè)滑返回功能,類似微信功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-12-12Android TableLayout數(shù)據(jù)列表的回顯清空實現(xiàn)思路及代碼
數(shù)據(jù)列表的回顯必須從后面減去子元素同時必須從后面減去子元素,感興趣的朋友可以看下具體的實現(xiàn)代碼,希望對你學(xué)習(xí)Android TableLayout有所幫助2013-04-04Android PullToRefreshLayout下拉刷新控件的終結(jié)者
這篇文章主要介紹了Android自定義控件實戰(zhàn)中下拉刷新控件終結(jié)者PullToRefreshLayout的實現(xiàn)方法,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-03-03Android程序開發(fā)之動態(tài)設(shè)置ImageView的亮度
這篇文章主要介紹了Android程序開發(fā)之動態(tài)設(shè)置ImageView的亮度 的相關(guān)資料,需要的朋友可以參考下2016-01-01Android開發(fā)實現(xiàn)Fragment監(jiān)聽返回鍵事件功能的方法
這篇文章主要介紹了Android開發(fā)實現(xiàn)Fragment監(jiān)聽返回鍵事件功能的方法,結(jié)合實例形式分析了Android使用Fragment監(jiān)聽并屏蔽返回鍵按鈕的實現(xiàn)方法與相關(guān)操作技巧,需要的朋友可以參考下2017-11-11