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網(wǎng)絡(luò)開發(fā)中GET與POST請求詳解
這篇文章主要介紹了android實現(xiàn)網(wǎng)絡(luò)請求的get和post請求的簡單封裝與使用,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧<BR>2022-12-12
Android自定義ProgressDialog進(jìn)度等待框
這篇文章主要介紹了Android自定義ProgressDialog進(jìn)度等待框,通過本文大家可以嘗試?yán)肁ndroid自定義ProgressDialog,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-01-01
Androd自定義對話框Dialog視圖及參數(shù)傳遞的實現(xiàn)方法
這篇文章主要介紹了Androd自定義對話框Dialog視圖及參數(shù)傳遞的實現(xiàn)方法,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2017-01-01
Android 中 TabHost與ViewPager結(jié)合實現(xiàn)首頁導(dǎo)航效果
這篇文章主要介紹了Android 中 TabHost與ViewPager結(jié)合實現(xiàn)首頁導(dǎo)航效果,代碼簡單易懂,感興趣的朋友參考下吧2016-09-09
Android List(集合)中的對象以某一個字段排序案例
這篇文章主要介紹了Android List(集合)中的對象以某一個字段排序案例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2020-08-08
Android中創(chuàng)建類似Instagram的漸變背景效果
這篇文章主要介紹了Android中創(chuàng)建類似Instagram的漸變背景效果,本文通過實例代碼給大家介紹的非常詳細(xì),需要的朋友可以參考下2017-12-12
Android輸入框控件ClearEditText實現(xiàn)清除功能
這篇文章主要為大家詳細(xì)介紹了Android輸入框控件ClearEditText實現(xiàn)清除功能,感興趣的小伙伴們可以參考一下2016-05-05
Android提高之ListView實現(xiàn)自適應(yīng)表格的方法
這篇文章主要介紹了Android采用ListView實現(xiàn)自適應(yīng)表格的方法,比較實用的功能,需要的朋友可以參考下2014-08-08

