0

自定义字体仅应用于第一个 textView 和 Button,而不应用于其余部分。我使用 findViewByid 来获取视图。我曾将 fontFam id 用于 textview,将 btFontFam 用于按钮

xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_marginTop="100dp" >

 <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:textSize="24sp"
    android:text="@string/L1" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="@string/LBtn"
    android:textSize="24sp" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="@string/L2"
    android:textSize="24sp" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="@string/L3"
    android:textSize="24sp" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="@string/L4"
    android:textSize="24sp" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:text="@string/SBtn"
    android:textSize="24sp" />

public class MainActivity extends Activity {

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

    Typeface tf = Typeface.createFromAsset(getAssets(),
            "Fonts/Roboto-Medium.ttf");

    TextView tv = (TextView) findViewById(R.id.fontFam);
    tv.setTypeface(tf);

    Button bt = (Button) findViewById(R.id.btfontFam);
    bt.setTypeface(tf);

}
}
4

1 回答 1

0

您应该将 TextView、Button、... 类扩展为使用自定义字体。

首先,将新属性添加到“values/attrs.xml”文件:

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

二、重写TextView类:

package com.ex.ui;

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

public class TextViewPlus extends TextView {
    public TextViewPlus(Context context) {
        super(context);
    }

    public TextViewPlus(Context context, AttributeSet attrs) {
        super(context, attrs);
        setCustomFont(context, attrs);
    }

    public TextViewPlus(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        setCustomFont(context, attrs);
    }

    private void setCustomFont(Context ctx, AttributeSet attrs) {
        TypedArray a = ctx.obtainStyledAttributes(attrs, R.styleable.TextViewPlus);
        String customFont = a.getString(R.styleable.TextViewPlus_customFont);
        setCustomFont(ctx, customFont);
        a.recycle();
    }

    public boolean setCustomFont(Context ctx, String asset) {
        Typeface tf = null;
        try {
        tf = Typeface.createFromAsset(ctx.getAssets(), asset);  
        } catch (Exception e) {
            return false;
        }
        setTypeface(tf);  
        return true;
    }
}

然后,使用自定义字体:

<com.ex.ui.TextViewPlus
xmlns:android="http://schemas.android.com/apk/res/android"    
xmlns:app="http://schemas.android.com/apk/res/com.ex"  
android:id="@android:id/text1"    
android:layout_width="match_parent"
android:layout_height="match_parent"
app:customFont="Roboto-Light.ttf"/>

笔记:

"xmlns:app="http://schemas.android.com/apk/res/com.ex" => "com.ex" 是主包,这意味着您可以通过 com.ex.R 访问资源

于 2013-08-23T20:59:54.793 回答