为了账号安全,请及时绑定邮箱和手机立即绑定

自定义飘落的字体

标签:
Android

看到飘落的雪花让我想起了飘落的字体
1.首先自定义一个view继承View

public class fallView extends View{

}

2.实现fallView中的方法:在方法中初始化屏幕宽度、画笔、要执行的时间

public fallView(Context context, AttributeSet attrs) {
    super(context, attrs);

    // 初始化
    w = context.getResources().getDisplayMetrics().widthPixels;
    h = context.getResources().getDisplayMetrics().heightPixels;

    initPaint();

    new Thread(runnable).start(); // 开启线程
}

3.添加绘画的布:

@Override
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    
    DrawLine(canvas,s, x, y, paint);

}
private void DrawLine(Canvas canvas,String s, int[] x2, int[] y2, Paint paint2) {

    for(int i =0 ; i<NUM;i++){

        canvas.drawText( s , x[i], y[i], paint);

    }
}

4.存储数据并且对外展示接口set

//存储的数据
private String s ;

public String getPollutant(){

    return s;
}
public void setPollutant(String s){

    this.s = s;
}

5.在该调用的地方调用:xml布局

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:background="#000000">

    <fall.huihui.com.fallView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/fall"/>

</RelativeLayout>

6.activity或者fragment中设置:

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

    private fallView fall;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        fall = (fallView) findViewById(R.id.fall);
        fall.setPollutant("安卓巴士");
    }
}

以上便完成了字体下落动画,效果图展示:

5ba3bd9400019f2210801920.jpg

原文链接:http://www.apkbus.com/blog-784586-63151.html

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消