利用Typeface
显示.ttf文件中的字符在TextView上面。java
效果图:
代码以下:
/** * 做者:秦川小将 * 描述:TypefaceTextView */
public class TypefaceTextView extends TextView {
public TypefaceTextView(Context context) {
super(context);
init(context, null);
}
public TypefaceTextView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
init(context, attrs);
}
private void init(Context context, AttributeSet attrs) {
// 自定义属性
TypedArray mArray = context.obtainStyledAttributes(attrs, R.styleable.TypefaceTextView);
String mTypefacePath = mArray.getString(R.styleable.TypefaceTextView_typefacePath);
String mTypefaceUnicode = mArray.getString(R.styleable.TypefaceTextView_typefaceUnicode);
mArray.recycle();
if (!TextUtils.isEmpty(mTypefacePath) && !TextUtils.isEmpty(mTypefaceUnicode)) {
setTypeface(Typeface.createFromAsset(context.getAssets(), mTypefacePath));
setText(mTypefaceUnicode);
}
}
}
自定义属性:
<declare-styleable name="TypefaceTextView">
<!--assets文件夹下的.ttf文件地址-->
<attr name="typefacePath" format="string" />
<!--Unicode码-->
<attr name="typefaceUnicode" format="reference|string" />
</declare-styleable>
在布局中使用:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:typefacetext="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:gravity="center"
android:orientation="horizontal">
<com.example.app.view.widget.TypefaceTextView
android:id="@+id/navigation_home"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:padding="5dp"
android:textColor="@color/gray"
android:textSize="25dp"
typefacetext:typefacePath="navigation/home_page_navigation.ttf"
typefacetext:typefaceUnicode="@string/icon_home" />
<com.example.app.view.widget.TypefaceTextView
android:id="@+id/navigation_search"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:padding="5dp"
android:textColor="@color/gray"
android:textSize="25dp"
typefacetext:typefacePath="navigation/home_page_navigation.ttf"
typefacetext:typefaceUnicode="@string/icon_search" />
<com.example.app.view.widget.TypefaceTextView
android:id="@+id/navigation_message"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:padding="5dp"
android:textColor="@color/gray"
android:textSize="25dp"
typefacetext:typefacePath="navigation/home_page_navigation.ttf"
typefacetext:typefaceUnicode="@string/icon_message" />
<com.example.app.view.widget.TypefaceTextView
android:id="@+id/navigation_user"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:textColor="@color/gray"
android:textSize="20dp"
typefacetext:typefacePath="navigation/home_page_navigation.ttf"
typefacetext:typefaceUnicode="@string/icon_user" />
</LinearLayout>
属性说明:android
typefacetext:typefacePath="navigation/home_page_navigation.ttf"
navigation/home_page_navigation.ttf 为assets文件夹下.ttf文件git
typefacetext:typefaceUnicode="@string/icon_home"
@string/icon_home 为string中的Unicode字符码github
案例中Unicode对应的stringweb
<resources>
<string name="icon_home">></string>
<string name="icon_search">></string>
<string name="icon_message"></string>
<string name="icon_user"></string>
</resources>
点击下载案例中ttf文件app
本文分享 CSDN - 秦川小将。
若有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一块儿分享。svg