Android字体多样式和动画TextDrawable

简介: Android字体多样式和动画TextDrawable在实际的Android开发中,很多时候,需要用TextView表现和展示view的内容和标题、标签之类。


Android字体多样式和动画TextDrawable

在实际的Android开发中,很多时候,需要用TextView表现和展示view的内容和标题、标签之类。但是Android本身提供的TextView只提供了基础的text表现,比较单调乏味,如果要实现丰富多彩的和ImageView那样的样式和表现能力,则需要自己动手实现或者使用第三方开源库。
在github上的第三方开源库TextDrawable(github上的链接地址主页:https://github.com/amulyakhare/TextDrawable )就是这样的TextView+ImageView的实现。
简单的说,TextDrawable的目的,是将一个普通的文本变形为一个“文本”的drawable,一旦成为drawable,那么接下来开发者可以自由使用的空间就很大了,比如可以随意的将此drawable作为源设置到ImageView里面等等。如图所示,就是将TextDrawable生成的各种样式drawable设置到竖直排列的若干个ImageView中:


使用TextDrawable之前首先需要到TextDrawable在github上的主页上把该项目的库文件拖下来,然后作为一个Android的lib,在自己的项目中引用。
给出实现本文图中效果的完整代码。
测试的主activity MainActivity.java:

package zhangphil.text;

import com.amulyakhare.textdrawable.TextDrawable;
import com.amulyakhare.textdrawable.util.ColorGenerator;

import android.app.Activity;
import android.content.res.Resources;
import android.graphics.Color;
import android.graphics.Typeface;
import android.graphics.drawable.AnimationDrawable;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.InsetDrawable;
import android.graphics.drawable.LayerDrawable;
import android.os.Bundle;
import android.util.TypedValue;
import android.widget.ImageView;

public class MainActivity extends Activity {

	private ColorGenerator mColorGenerator = ColorGenerator.MATERIAL;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		ImageView image1 = (ImageView) findViewById(R.id.imageView1);
		image1.setImageDrawable(TextDrawable.builder().buildRect("A", mColorGenerator.getRandomColor()));

		// 圆角为20dip的矩形TextDrawable
		ImageView image2 = (ImageView) findViewById(R.id.imageView2);
		image2.setImageDrawable(TextDrawable.builder().buildRoundRect("A", mColorGenerator.getRandomColor(), 20));

		// 圆形TextDrawable
		ImageView image3 = (ImageView) findViewById(R.id.imageView3);
		image3.setImageDrawable(TextDrawable.builder().buildRound("A", mColorGenerator.getRandomColor()));

		// 多字TextDrawable
		ImageView image4 = (ImageView) findViewById(R.id.imageView4);
		image4.setImageDrawable(TextDrawable.builder().buildRound("AB", mColorGenerator.getRandomColor()));

		// 描边10dip的圆角矩形TextDrawable
		ImageView image5 = (ImageView) findViewById(R.id.imageView5);
		image5.setImageDrawable(TextDrawable.builder().beginConfig().withBorder(10).endConfig().buildRoundRect("A",
				mColorGenerator.getRandomColor(), 20));

		// 设定字体和字体颜色的TextDrawable
		ImageView image6 = (ImageView) findViewById(R.id.imageView6);
		image6.setImageDrawable(TextDrawable.builder().beginConfig().textColor(Color.BLACK).useFont(Typeface.DEFAULT)
				.fontSize(30).bold().toUpperCase().endConfig().buildRect("a", Color.RED));

		// 分栏的TextDrawable
		ImageView image7 = (ImageView) findViewById(R.id.imageView7);
		image7.setImageDrawable(get2ItemTextDrawable());

		// 动画TextDrawable
		ImageView image8 = (ImageView) findViewById(R.id.imageView8);
		image8.setImageDrawable(getAnimationTextDrawable());
	}

	// 两分栏的TextDrawable
	public Drawable get2ItemTextDrawable() {
		String leftText = "a";
		String rightText = "b";

		TextDrawable.IBuilder builder = TextDrawable.builder().rect();

		TextDrawable left = builder.build(leftText, mColorGenerator.getRandomColor());
		TextDrawable right = builder.build(rightText, mColorGenerator.getRandomColor());

		Drawable[] layerList = { new InsetDrawable(left, 0, 0, toPix(25), 0),
				new InsetDrawable(right, toPix(25), 0, 0, 0) };
		return new LayerDrawable(layerList);
	}

	// 动画TextDrawable
	public Drawable getAnimationTextDrawable() {
		TextDrawable.IBuilder builder = TextDrawable.builder().rect();
		AnimationDrawable animationDrawable = new AnimationDrawable();

		for (int i = 0; i < 10; i++) {
			TextDrawable frame = builder.build(i + "", mColorGenerator.getRandomColor());
			animationDrawable.addFrame(frame, 2000);
		}

		animationDrawable.setOneShot(false);
		animationDrawable.start();

		return animationDrawable;
	}

	// dip转化为pix
	public int toPix(int dip) {
		Resources resources = getResources();
		return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dip, resources.getDisplayMetrics());
	}
}


布局文件activity_main.xml:

<ScrollView 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:layout_margin="10dip"
    tools:context="zhangphil.text.MainActivity" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_margin="10dip" />

        <ImageView
            android:id="@+id/imageView2"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_margin="10dip" />

        <ImageView
            android:id="@+id/imageView3"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_margin="10dip" />

        <ImageView
            android:id="@+id/imageView4"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_margin="10dip" />

        <ImageView
            android:id="@+id/imageView5"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_margin="10dip" />

        <ImageView
            android:id="@+id/imageView6"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_margin="10dip" />

        <ImageView
            android:id="@+id/imageView7"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_margin="10dip" />

        <ImageView
            android:id="@+id/imageView8"
            android:layout_width="50dip"
            android:layout_height="50dip"
            android:layout_margin="10dip" />
    </LinearLayout>

</ScrollView>

代码运行结果就是本文所示结果。

相关文章
|
5月前
|
存储 Shell Android开发
基于Android P,自定义Android开机动画的方法
本文详细介绍了基于Android P系统自定义开机动画的步骤,包括动画文件结构、脚本编写、ZIP打包方法以及如何将自定义动画集成到AOSP源码中。
100 2
基于Android P,自定义Android开机动画的方法
|
3月前
|
Android开发 UED
Android 中加载 Gif 动画
【10月更文挑战第20天】加载 Gif 动画是 Android 开发中的一项重要技能。通过使用第三方库或自定义实现,可以方便地在应用中展示生动的 Gif 动画。在实际应用中,需要根据具体情况进行合理选择和优化,以确保用户体验和性能的平衡。可以通过不断的实践和探索,进一步掌握在 Android 中加载 Gif 动画的技巧和方法,为开发高质量的 Android 应用提供支持。
|
8月前
|
Java Android开发 开发者
Android10 修改开发者选项中动画缩放默认值
Android10 修改开发者选项中动画缩放默认值
228 0
|
8月前
|
XML Java Android开发
android的三种动画
android的三种动画
50 0
|
6月前
|
XML Android开发 数据格式
Android 中如何设置activity的启动动画,让它像dialog一样从底部往上出来
在 Android 中实现 Activity 的对话框式过渡动画:从底部滑入与从顶部滑出。需定义两个 XML 动画文件 `activity_slide_in.xml` 和 `activity_slide_out.xml`,分别控制 Activity 的进入与退出动画。使用 `overridePendingTransition` 方法在启动 (`startActivity`) 或结束 (`finish`) Activity 时应用这些动画。为了使前 Activity 保持静止,可定义 `no_animation.xml` 并在启动新 Activity 时仅设置新 Activity 的进入动画。
168 12
|
6月前
|
Android开发
Android面试题经典之如何全局替换App的字体
在Android应用中替换字体有全局和局部方法。全局替换涉及在`Application`的`onCreate`中设置自定义字体,并创建新主题。局部替换则可在布局中通过`ResourcesCompat.getFont()`加载字体文件并应用于`TextView`。
96 2
|
7月前
|
Android开发 开发者
Android UI设计中,Theme定义了Activity的视觉风格,包括颜色、字体、窗口样式等,定义在`styles.xml`。
【6月更文挑战第26天】Android UI设计中,Theme定义了Activity的视觉风格,包括颜色、字体、窗口样式等,定义在`styles.xml`。要更改主题,首先在该文件中创建新主题,如`MyAppTheme`,覆盖所需属性。然后,在`AndroidManifest.xml`中应用主题至应用或特定Activity。运行时切换主题可通过重新设置并重启Activity实现,或使用`setTheme`和`recreate()`方法。这允许开发者定制界面并与品牌指南匹配,或提供多主题选项。
108 6
|
7月前
|
Android开发 UED
Android Item平移动画
【6月更文挑战第18天】
123 8
|
6月前
|
XML Android开发 UED
Android动画之共享元素动画简单实践
本文介绍Android共享元素动画, 实现两Activity间平滑过渡特定UI元素。通过设置`transitionName`属性和使用`ActivityOptions.makeSceneTransitionAnimation`启动目标Activity实现动画效果。可自定义过渡动画提升体验。
91 0