Android LED数字/电子表字体digital font

来源:互联网 发布:酷狗mac添加音乐 编辑:程序博客网 时间:2024/05/16 13:07
Android LED数字/电子表字体digital font

先看实现的字体样式:




这种类型的字体样式会被一些UI设计用于Android APP中视频,或者广告的倒计时牌,比如常见的Android视频直播软件中右上角的广告倒计时。
实现这种字体样式,先导入一个字体包:digital-7.ttf。这个digital-7.ttf文件,我已经上传,下载链接地址:http://download.csdn.net/download/zhangphil/9965392 
拿到digital-7.ttf文件后,作为Android assets资源文件导入,如图:




然后就可以使用了,我给出一个例子,重写一个TextView,PhilText.java:
package zhangphil.app;import android.content.Context;import android.content.res.AssetManager;import android.graphics.Typeface;import android.util.AttributeSet;import android.widget.TextView;import java.io.File;/** * Created by Phil on 2017/9/5. */public class PhilText extends TextView{    public PhilText(Context context, AttributeSet attrs) {        super(context, attrs);        init(context);    }    private void init(Context context) {        String file = "fonts" + File.separator + "digital-7.ttf";        AssetManager assets = context.getAssets();        Typeface font = Typeface.createFromAsset(assets, file);        setTypeface(font);    }}



把PhilText直接作为View放到xml布局里面使用:
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="horizontal">    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="倒计时:" />    <zhangphil.app.PhilText        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginLeft="10dp"        android:text="20"        android:textColor="@android:color/holo_green_dark"        android:textSize="80dp"        android:textStyle="bold" />    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="天" />    <zhangphil.app.PhilText        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginLeft="10dp"        android:text="48"        android:textColor="@android:color/holo_green_dark"        android:textSize="80dp"        android:textStyle="bold" />    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="小时" />    <zhangphil.app.PhilText        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginLeft="10dp"        android:text="09"        android:textColor="@android:color/holo_green_dark"        android:textSize="80dp"        android:textStyle="bold" />    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="分" />    <zhangphil.app.PhilText        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_marginLeft="10dp"        android:text="05"        android:textColor="@android:color/holo_green_dark"        android:textSize="80dp"        android:textStyle="bold" />    <TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:text="秒" /></LinearLayout>

代码运行结果就是本文前述的配图。
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 科目三预约不上怎么办 心脏支架又堵了怎么办 车辆验车过期了怎么办 车辆年审过期2天怎么办 违停单子丢了怎么办 沙发弹簧包坏了怎么办 bt种子被和谐了怎么办 苹果手机id密码忘了怎么办 墙漆颜色太深了怎么办 油漆颜色太深了怎么办 墙面漆颜色太深怎么办 古代打仗牙掉了怎么办 乐视电视没声音怎么办 老公疑心病很重怎么办啊 被安装了尿道锁怎么办 狼青小狗腿罗圈怎么办 备孕期间有霉菌怎么办 虫子进皮肤里了怎么办 生完孩子肚子越来越大怎么办 怀孕8个月肚子小怎么办 孕晚期胎儿不长怎么办 肚子上肉特别多怎么办 奶堵了有硬块怎么办 便秘5天肚子胀怎么办 上火大便拉不出来怎么办 大便拉不出来肚子痛怎么办 戒奶奶涨有硬块怎么办 忌奶的时候涨奶怎么办 娃儿隔奶,,奶涨怎么办 狗肚子很大很鼓怎么办 注册不了的二建怎么办 专升本没考过怎么办 警察乱拘留人该怎么办 玩英雄联盟太卡怎么办 一方离婚证丢了怎么办 遭遇呼死你软件怎么办 开车遇见碰瓷的怎么办 遇到碰瓷老人的怎么办 睿强遥控锁坏了怎么办 地暖分水器坏了怎么办 京东赠品无货怎么办