中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android開發中怎么實現一個文字倒影效果

發布時間:2020-11-25 17:18:19 來源:億速云 閱讀:362 作者:Leah 欄目:移動開發

這期內容當中小編將會給大家帶來有關Android開發中怎么實現一個文字倒影效果,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

布局文件中增加如下代碼

<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);
  }
}

上述就是小編為大家分享的Android開發中怎么實現一個文字倒影效果了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

商都县| 榕江县| 定安县| 南丹县| 仁化县| 宁阳县| 深州市| 和平区| 华宁县| 界首市| 乌兰县| 万盛区| 武川县| 赫章县| 西丰县| 东安县| 托克逊县| 吴江市| 盖州市| 宜章县| 社会| 穆棱市| 汉川市| 洪雅县| 饶平县| 腾冲县| 金堂县| 金沙县| 广水市| 平舆县| 五大连池市| 潮州市| 姜堰市| 桦甸市| 洛扎县| 资中县| 平潭县| 镇沅| 万源市| 社旗县| 皮山县|