Android - 将自定义字体应用到textview不起作用

时间:2014-05-11 08:46:42

标签: android fonts

我正在尝试将textview文本设置为自定义字体。

为了做到这一点,我已经完成了接下来的步骤 -

1)布局Xml看起来像这样:

           <TextView
                android:id="@+id/textView_window_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:text="Profile"
                android:textColor="#505A62" />

2)我在fonts文件夹中创建了一个assets文件夹,并放置了3个不同的字体文件。所有这三个都是.ttf文件类型。此外,每个字体文件和类型的名称都用小写字母书写,如{ - 1}}

3)在片段类中,我使用了下一个代码 -

cr.ttf

我尝试过3个不同的字体文件,但没有一个更改textview字体。

为什么这段代码无效?

感谢您提供任何帮助

4 个答案:

答案 0 :(得分:2)

试试这个lib:https://github.com/neopixl/PixlUI

快速尝试并看到它的魔力:)

答案 1 :(得分:1)

String fontPath = "fonts/cr.ttf";
Typeface tf = Typeface.createFromAsset(this.getAssets(), fontPath);
titleWindow.setTypeface(tf);

试试这个

答案 2 :(得分:0)

在您正在使用的所有视图上设置字体字体,只需尝试我的代码......

private EditText etComment2;
private TextView tvQuestionText1;
private TextView tvQuestionText2;
private Button btn1; 


     in you onCreate()

    etComment3 = (EditText)findViewById(R.id.etComment3);
    tvQuestionText1 = (TextView)findViewById(R.id.tvQuestionText1);
    tvQuestionText2 = (TextView)findViewById(R.id.tvQuestionText2);
    btn1 = (Button)findViewById(R.id.btn1);

在这里创建所有视图的数组 -

View allViews[] = 
        {
            etComment2,
            tvQuestionText1,
            tvQuestionText2,
            btn1
        };

在此传递此视图对象 - AppConstant是我们管理所有静态方法的类

    AppConstant.setTypeFace(allViews);

现在这里是我们使用方法TypeFace

的常量类
public static void setTypeFace(View []views)
{

    for(int i=0 ; i<views.length; i++)
    {
        Typeface tf = Typeface.createFromAsset(views[i].getContext().getAssets(), "fonts/SourceSansPro-Semibold.ttf");
        if(views[i] instanceof TextView )
        {
            ((TextView)views[i]).setTypeface(tf);
        }
        else if(views[i] instanceof Button )
        {
            ((Button)views[i]).setTypeface(tf);
        }
        else if(views[i] instanceof EditText )
        {
            ((EditText)views[i]).setTypeface(tf);
        }
    }

答案 3 :(得分:0)

// Declare styleable in attrs.xml
/res/values/attrs.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="MyTextView">
<attr name="fontName" format="string" />
    </declare-styleable>
</resources>

Create a layout in layout folder

    /res/layout/activity_main.xml
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:customfontdemo="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" 
        android:gravity="center">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="24sp"
            android:padding="12dp"
            android:text="Standard Android Font" />

         <com.authorwjf.customfontdemo.MyTextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="32sp"
            android:padding="12dp"
            customfontdemo:fontName="pipe_dream.ttf"
            android:text="Custom Android Font" />

    </LinearLayout>

//现在创建自定义文本视图

/src/MyTextView.java

package com.deepak.utilsview;

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

public class MyTextView extends TextView {

    public MyTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        init(attrs);
    }

    public MyTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(attrs);

    }

    public MyTextView(Context context) {
        super(context);
        init(null);
    }

    private void init(AttributeSet attrs) {
        if (attrs!=null) {
             TypedArray a = getContext().obtainStyledAttributes(attrs, R.styleable.MyTextView);
             String fontName = a.getString(R.styleable.MyTextView_fontName);
             if (fontName!=null) {
                 Typeface myTypeface = Typeface.createFromAsset(getContext().getAssets(), "fonts/"+fontName);
                 setTypeface(myTypeface);
             }
             a.recycle();
        }
    }

}

//现在在运行活动后看到活动中的字体

/src/MainActivity.java package com.authorwjf.customfontdemo;

import android.os.Bundle;
import android.app.Activity;

public class MainActivity extends Activity {

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

}