Android中实现如win7里边屏幕保护图案中三维文字的效果。

2024-05-30 06:38

本文主要是介绍Android中实现如win7里边屏幕保护图案中三维文字的效果。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

具体实现如下:

activity_main.xml中定义一个用来显示文字的TextView:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
     
    <TextView
        android:id="@+id/tv_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="无信号"
        android:textSize="80dp"
        android:layout_centerInParent="true"/>
       
</RelativeLayout>


MainActivity.java中定义主activity。
public class MainActivity extends Activity {    
    private TextView tv_text;  
    private String TAG = "MainActivity";
    Rotate3dAnimation rotateAnim = null;   
 
    public void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        
        //隐藏标题栏
        this.requestWindowFeature(Window.FEATURE_NO_TITLE);
        //隐藏状态栏
        this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setContentView(R.layout.activity_main);  
    
        tv_text = (TextView) findViewById(R.id.tv_text);
        if(null == tv_text){
            Log.i("MainActivity", "textview null...");
        }
        startAnimation();
    }  


    public void startAnimation() {  

        //用来获取textview的宽度和高度,否则宽度和高度都为0
        ViewTreeObserver vto = tv_text.getViewTreeObserver();
        vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
            
            @Override
            public void onGlobalLayout() {
                // TODO Auto-generated method stub
                tv_text.getViewTreeObserver().removeGlobalOnLayoutListener(this);
                Log.i("MainActivity", "onGlobalLayout txtNumber.width = " + tv_text.getWidth());
                Log.i("MainActivity", "onGlobalLayout txtNumber.height = " + tv_text.getHeight());
               
                rotateAnim = new Rotate3dAnimation(tv_text.getWidth()/2, tv_text.getHeight()/2, Rotate3dAnimation.ROTATE_CLOCKWIZE); 
              
                
                if (rotateAnim != null) {  
                    rotateAnim.setDuration(5000);
                    rotateAnim.setFillAfter(true);  
                    rotateAnim.setInterpolator(new LinearInterpolator());
                    rotateAnim.setRepeatCount(-1);
                    rotateAnim.setRepeatMode(Animation.RESTART);
                    tv_text.startAnimation(rotateAnim);  
                }  
                
            }
        });
    }  
}

//文字的翻转动画

public class Rotate3dAnimation extends Animation{
    
    /** 逆时针旋转*/  
    public static final boolean ROTATE_CLOCKWIZE = true;  
    /**动画顺时针旋转*/  
    public static final boolean ROTATE_ANTICOLCKWIZE = false;  
    /** Z轴上最大深度*/  
    public static final float DEPTH_Z = 310.0f;   
    /** 图片翻转类型*/  
    private final boolean type;  
    /** 翻转中心*/
    private final float centerX;  
    private final float centerY;  
    private Camera camera;  
    /** 用于监听动画进度*/  
    private InterpolatedTimeListener listener;  
 
    public Rotate3dAnimation(float cX, float cY, boolean type) {  //三个参数分别为翻转的中心位置和翻转方向
        centerX = cX;  
        centerY = cY;  
        this.type = type;  
    }  
 
    public void initialize(int width, int height, int parentWidth, int parentHeight) {  
        // 在构造函数之后、getTransformation()之前调用本方法。  
        super.initialize(width, height, parentWidth, parentHeight);  
        camera = new Camera();  
    }  
 
    public void setInterpolatedTimeListener(InterpolatedTimeListener listener) {  
        this.listener = listener;  
    }  
 
    //RotateAnimation.applyTransformation()第一个参数为动画的进度时间值,取值范围为[0.0f,1.0f],
    //第二个参数Transformation记录着动画某一帧中变形的原始数据。
    //该方法在动画的每一帧显示过程中都会被调用。
    protected void applyTransformation(float interpolatedTime, Transformation transformation) {  
 
        if (listener != null) {  
            listener.interpolatedTime(interpolatedTime);  
        }  
        float from = 0.0f, to = 0.0f;  
        if (type == ROTATE_CLOCKWIZE) {  
            from = 0.0f;  
            to = 180.0f;  
        } else if (type == ROTATE_ANTICOLCKWIZE) {  
            from = 360.0f;  
            to = 180.0f;  
        }  
        float degree = from + (to - from) * interpolatedTime;  
        boolean overHalf = (interpolatedTime > 0.5f);  
        if (overHalf) {  
            // 翻转过半的情况下,为保证数字仍为可读的文字而非镜面效果的文字,需翻转180度。  
            degree = degree - 180;  
        }  
       
        float depth = (0.5f - Math.abs(interpolatedTime - 0.5f)) * DEPTH_Z;  
        final android.graphics.Matrix matrix = transformation.getMatrix();  
        camera.save();  //保存原来的状态
        camera.translate(0.0f, 0.0f, depth);  //平移一段距离
        camera.rotateY(degree);  //设置旋转的角度
        camera.getMatrix(matrix);  //取得变换矩阵
        camera.restore();   //操作完后,恢复到原来的状态
       
        //确保图片的翻转过程一直处于组件的中心点位置  
        //preTranslate是指在setScale前,平移,postTranslate是指在setScale后平移
       //以图片的中心点为旋转中心,如果不加这两句,就是以(0,0)点为旋转中心
        matrix.preTranslate(-centerX, -centerY);  
        matrix.postTranslate(centerX, centerY);   
    }  
 
    /** 动画进度监听器。 */  
    public static interface InterpolatedTimeListener {  
        public void interpolatedTime(float interpolatedTime);  
    }  
}


注:获取控件的宽度和高度,具体请参考:http://my.oschina.net/xiahuawuyu/blog/167949

        文字的翻转动画的实现,具体请参考:http://blog.csdn.net/sodino/article/details/7703980

这篇关于Android中实现如win7里边屏幕保护图案中三维文字的效果。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1015841

相关文章

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义