溫馨提示×

溫馨提示×

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

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

閃亮亮的文本框效果

發(fā)布時(shí)間:2020-06-22 20:05:22 來源:網(wǎng)絡(luò) 閱讀:672 作者:wy521angel 欄目:移動開發(fā)

    我已經(jīng)相信有些人我永遠(yuǎn)不必等……當(dāng)然這要除了送快遞的——昨天買了許多IT書和文學(xué)小說。

    大學(xué)里課程設(shè)計(jì)的時(shí)候做過數(shù)字鐘,是用匯編語言寫的,感覺那個(gè)閃亮的數(shù)字界面很好看,下面用代碼實(shí)現(xiàn)一下那種顯示界面。

    主類中沒什么東西,就不貼代碼了,自定義了一個(gè)LedTextView類,設(shè)置特殊字體,也很簡單:

package com.example.ledtextviewtest;

import android.content.Context;
import android.content.res.AssetManager;
import android.graphics.Typeface;
import android.util.AttributeSet;
import android.widget.TextView;

public class LedTextView extends TextView {

	public LedTextView(Context context, AttributeSet attrs) {
		super(context, attrs);
		AssetManager assetManager = context.getAssets();
		// 設(shè)置某種樣式的字體
		Typeface font = Typeface.createFromAsset(assetManager, "digital-7.ttf");
		setTypeface(font);
	}

}

    最主要的是從asset文件夾中獲取一種字體的樣式,樣式文件是下載的,我使用的是“digital-7.ttf”,如圖:

閃亮亮的文本框效果

    XML文件:

<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="#000" >

    <com.example.ledtextviewtest.LedTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="88:88:88"
        android:textColor="#3300ff00"
        android:textSize="80sp" />

    <com.example.ledtextviewtest.LedTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:shadowColor="#00ff00"
        android:shadowDx="0"
        android:shadowDy="0"
        android:shadowRadius="10"
        android:text="09:45:23"
        android:textColor="#00ff00"
        android:textSize="80sp" />

</RelativeLayout>

    有兩個(gè)自定義的UI控件,其中第一個(gè)顯示背景,第二個(gè)顯示當(dāng)前時(shí)間值。其中第一個(gè)LedTextView設(shè)置淺一些的顏色,第二個(gè)LedTextView的陰影和字體顏色設(shè)置相同,都是“#00ff00”。

android:shadowDx="0"和android:shadowDy="0"可以改變陰影與文本內(nèi)容之間的偏移度,“0”則表示不偏移。android:shadowRadius="10"為陰影的半徑,設(shè)置可以使文本看起來更亮些。

    效果圖:

閃亮亮的文本框效果

    我只是寫了一個(gè)文本的效果,可以把它真正做成一個(gè)電子時(shí)鐘。


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI