编辑:所以已经有一段时间了,我想添加我认为最好的方法,并且通过 XML 不少!
因此,首先,您将要创建一个覆盖您想要自定义的任何视图的新类。(例如,想要一个带有自定义字体的 Button?Extend Button
)。让我们举个例子:
public class CustomButton extends Button {
private final static int ROBOTO = 0;
private final static int ROBOTO_CONDENSED = 1;
public CustomButton(Context context) {
super(context);
}
public CustomButton(Context context, AttributeSet attrs) {
super(context, attrs);
parseAttributes(context, attrs); //I'll explain this method later
}
public CustomButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
parseAttributes(context, attrs);
}
}
现在,如果您没有,请在 下添加一个 XML 文档res/values/attrs.xml
,然后添加:
<resources>
<!-- Define the values for the attribute -->
<attr name="typeface" format="enum">
<enum name="roboto" value="0"/>
<enum name="robotoCondensed" value="1"/>
</attr>
<!-- Tell Android that the class "CustomButton" can be styled,
and which attributes it supports -->
<declare-styleable name="CustomButton">
<attr name="typeface"/>
</declare-styleable>
</resources>
好的,所以,让我们回到parseAttributes()
之前的方法:
private void parseAttributes(Context context, AttributeSet attrs) {
TypedArray values = context.obtainStyledAttributes(attrs, R.styleable.CustomButton);
//The value 0 is a default, but shouldn't ever be used since the attr is an enum
int typeface = values.getInt(R.styleable.CustomButton_typeface, 0);
switch(typeface) {
case ROBOTO: default:
//You can instantiate your typeface anywhere, I would suggest as a
//singleton somewhere to avoid unnecessary copies
setTypeface(roboto);
break;
case ROBOTO_CONDENSED:
setTypeface(robotoCondensed);
break;
}
values.recycle();
}
现在你都准备好了。您可以为任何东西添加更多属性(您可以为字体样式添加另一个属性——粗体、斜体等),但现在让我们看看如何使用它:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res/com.yourpackage.name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.yourpackage.name.CustomButton
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me!"
custom:typeface="roboto" />
</LinearLayout>
这xmlns:custom
条线实际上可以是任何东西,但约定如上所示。重要的是它是独一无二的,这就是使用包名称的原因。现在您只需custom:
为属性使用前缀,android:
为 android 属性使用前缀。
最后一件事:如果您想在样式 ( res/values/styles.xml
) 中使用它,则不应添加该xmlns:custom
行。只需引用不带前缀的属性名称:
<style name="MyStyle>
<item name="typeface">roboto</item>
</style>
(PREVIOUS ANSWER)
在 Android 中使用自定义字体
这应该会有所帮助。基本上,在 XML 中没有办法做到这一点,而且据我所知,没有更简单的方法可以在代码中做到这一点。您总是可以有一个 setLayoutFont() 方法,该方法创建一次字体,然后为每个字体运行 setTypeface()。每次将新项目添加到布局时,您只需更新它。如下所示:
public void setLayoutFont() {
Typeface tf = Typeface.createFromAsset(
getBaseContext().getAssets(), "fonts/BPreplay.otf");
TextView tv1 = (TextView)findViewById(R.id.tv1);
tv1.setTypeface(tf);
TextView tv2 = (TextView)findViewById(R.id.tv2);
tv2.setTypeface(tf);
TextView tv3 = (TextView)findViewById(R.id.tv3);
tv3.setTypeface(tf);
}
编辑:所以我刚刚开始自己实现这样的东西,而我最终是如何做到的就是制作这样的功能:
public static void setLayoutFont(Typeface tf, TextView...params) {
for (TextView tv : params) {
tv.setTypeface(tf);
}
}
然后,只需使用 onCreate() 中的此方法,并传递您要更新的所有 TextView:
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/BPreplay.otf");
//find views by id...
setLayoutFont(tf, tv1, tv2, tv3, tv4, tv5);
编辑 9/5/12:
因此,由于这仍在获得意见和投票,我想添加一个更好、更完整的方法:
Typeface mFont = Typeface.createFromAsset(getAssets(), "fonts/BPreplay.otf");
ViewGroup root = (ViewGroup)findViewById(R.id.myrootlayout);
setFont(root, mFont);
/*
* Sets the font on all TextViews in the ViewGroup. Searches
* recursively for all inner ViewGroups as well. Just add a
* check for any other views you want to set as well (EditText,
* etc.)
*/
public void setFont(ViewGroup group, Typeface font) {
int count = group.getChildCount();
View v;
for(int i = 0; i < count; i++) {
v = group.getChildAt(i);
if(v instanceof TextView || v instanceof Button /*etc.*/)
((TextView)v).setTypeface(font);
else if(v instanceof ViewGroup)
setFont((ViewGroup)v, font);
}
}
如果您将布局的根传递给它,它将递归地检查该布局中的TextView
或Button
视图(或您添加到该 if 语句的任何其他视图),并设置字体,而无需您通过 ID 指定它们。这当然是假设您想为每个视图设置字体。