我应该将我的字体文件 (TTF) 放在 res 文件夹的哪个位置?
问问题
23961 次
5 回答
17
使用自定义字体
第一步是选择您要使用的字体。
其次在您的资产目录中创建一个 Fonts 文件夹并将您的字体复制到那里。
注意:你可以把你的字体放在assets文件夹的任何地方,但我就是这样做的!!
这就是设置,现在进入代码。
要访问您的自定义字体,您必须使用 Android SDK 中的 Typeface 类来创建 Android 可以使用的字体,然后设置需要适当使用您的自定义字体的任何显示元素。例如,您可以在主屏幕上创建两个文本视图,一个使用默认的 Android Sans 字体,另一个使用您的自定义字体。布局如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:id="@+id/DefaultFontText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="30sp"
android:text="Here is some text." />
<TextView
android:id="@+id/CustomFontText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30sp"
android:text="Here is some text.">
</TextView>
</LinearLayout>
加载和设置自定义字体的代码也很简单,如下所示。
public class Main extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Typeface tf = Typeface.createFromAsset(getAssets(),
"fonts/BPreplay.otf");
TextView tv = (TextView) findViewById(R.id.CustomFontText);
tv.setTypeface(tf);
}
}
你可以看到结果:
于 2012-06-06T19:21:36.023 回答
10
您可以在资产文件夹(即资产/字体/roboto.ttf)中创建字体。
然后,为您的 TextView 创建一个适当的类:
// RobotoFont class
package com.my.font;
public class RobotoFont extends TextView {
public RobotoFont(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public RobotoFont(Context context, AttributeSet attrs) {
super(context, attrs);
}
public RobotoFont(Context context) {
super(context);
}
public void setTypeface(Typeface tf, int style) {
if (style == Typeface.BOLD) {
super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/Roboto-Bold.ttf"));
}
else if(style == Typeface.ITALIC)
{
super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/Roboto-Italic.ttf"));
}
else
{
super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "fonts/Roboto-Regular.ttf"));
}
}
}
最后,更新您的布局:
//main.xml
//replace textview with package name com.my.font.RobotoFont
<com.my.font.RobotoFont
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="2dip" />
于 2012-06-06T19:12:32.700 回答
5
不在res文件夹中,而是在assets文件夹中的任何位置。然后您可以使用以下createFromAsset
静态方法Typeface
:
于 2012-06-06T19:02:35.893 回答
4
从Android O开始,您可以在 xml中创建fonts
文件夹并直接使用它。
查看新的Android O - 字体功能。resources
于 2017-03-28T15:49:25.290 回答
2
从Android Studio 1.5.1开始,您可以:
- 右键单击您的
app
目录 New
>Folder
(这在列表的底部附近,很容易错过)>Assets Folder
- 在大多数情况下,您可以将文件夹位置保留为默认值 > 单击完成
- 将文件移动到新创建的
assets
文件夹中
于 2016-02-11T23:59:22.277 回答