如何使用自定义字体在一个项目写在Android工作室

我试图在Android Studio中使用自定义字体,就像我们在Eclipse中所做的那样。但不幸的是,不知道在哪里放“资产”文件夹!

418908 次浏览

2021年更新:

res文件夹中创建一个名为字体的文件夹并复制你的字体

enter image description here

所有字体名称只能为:小写字母a-z、0-9或下划线。

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fontFamily="@font/abc_font" />

编程使用:

textView.setTypeface(ResourcesCompat.getFont(context, R.font.abc_font))

对于Android Studio 4.2+,现在甚至有一个菜单选项:

enter image description here

  1. 在Project -> app(或您的app名称)-> src -> main ->右键单击->新建->目录中创建文件夹资产。
  2. 然后在资产中创建一个名为fonts的新目录。

将字体分配给textView:

TextView textView = (TextView) findViewById(R.id.your_textView);


final Typeface font = Typeface.createFromAsset(context.getAssets(), "fonts/your_font_name");

Your_font_name包含字体扩展名。

你可以使用easy &简单的EasyFonts第三方库来设置各种自定义字体到你的TextView。通过使用这个库,你应该不必担心下载和添加字体到assets/fonts文件夹。还有关于字体对象的创建。您将从创建资产文件夹也自由。

简单:

TextView myTextView = (TextView)findViewById(R.id.myTextView);
myTextView.setTypeface(EasyFonts.robotoThin(this));

这个库提供了许多类型的字体。

你好,这里我们有一个更好的方法应用在android上的EditTexts和TextViews字体,并将其应用于整个项目。

首先,你需要使字体文件夹。以下是步骤。

1:进入(项目文件夹)然后应用>src>main

2:在主文件夹中创建名为assets/fonts的文件夹。

3:把你的字体放进字体文件夹。这里是' mavenpro - regular。ttf'

下面是在EditText上应用自定义字体的步骤,使用这种方法可以在每个输入上应用字体。

1:创建一个类MyEditText(你喜欢的名字…)

2:扩展EditText

3:使用你的字体

下面是代码示例;

public class MyEditText extends EditText {


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


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


public MyEditText(Context context) {
super(context);
init();
}


private void init() {
if (!isInEditMode()) {
Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "fonts/MavenPro-Regular.ttf");
setTypeface(tf);
}
}


}

这里是如何使用它的代码。

MyEditText editText = (MyEditText) findViewById(R.id.editText);


editText.setText("Hello");

或者在你的xml文件中

   <MyEditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:textColor="#fff"
android:textSize="16dp"
android:id="@+id/editText"
/>

https://i.stack.imgur.com/i6XNU.png

  1. 选择“File>New>Folder>Assets Folder”

  2. 单击<强> finish < / >强

  3. 右键单击assets并创建一个名为fonts的文件夹

  4. 把你的字体文件放在assets > fonts

  5. 使用下面的代码改变你的textView的字体

    TextView textView = (TextView) findViewById(R.id.textView);
    Typeface typeface = Typeface.createFromAsset(getAssets(), "fonts/yourfont.ttf");
    textView.setTypeface(typeface);
    

如果你像我一样对Android非常陌生,这可能有点棘手。请务必致电:

TextView myTextView = (TextView) findViewById(R.id.textView);
Typeface typeface=Typeface.createFromAsset(getAssets(), "fonts/your font.ttf");
myTextView.setTypeface(typeface);

方法,例如onCreate

我想补充一下我对Android- o和Android Studio 2.4的回答

  1. res文件夹下创建名为字体的文件夹。下载要添加到项目示例谷歌字体中的各种字体

  2. 在你的xml用户字体族

    例子:

    <TextView
    android:fontFamily="@font/indie_flower"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="10dp"
    android:text="@string/sample_text" />
    

3.如果您希望它以编程的方式使用下面的代码

Typeface typeface = getResources().getFont(R.font.indie_flower);
textView.setTypeface(typeface);

更多信息请点击我的博客文章Android Studio 2.4的字体样式

首先创建assets文件夹,然后在其中创建fonts文件夹。

然后你可以像下面这样从assetsdirectory中设置font:

public class FontSampler extends Activity {
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);


TextView tv = (TextView) findViewById(R.id.custom);
Typeface face = Typeface.createFromAsset(getAssets(), "fonts/HandmadeTypewriter.ttf");


tv.setTypeface(face);


File font = new File(Environment.getExternalStorageDirectory(), "MgOpenCosmeticaBold.ttf");


if (font.exists()) {
tv = (TextView) findViewById(R.id.file);
face = Typeface.createFromFile(font);


tv.setTypeface(face);
} else {
findViewById(R.id.filerow).setVisibility(View.GONE);
}
}
}

与支持库26.0(和Android O)字体可以轻松从资源加载: enter image description here < / p >

Typeface typeface = ResourcesCompat.getFont(Context context, int fontResourceId)

方法的文档

更多信息可以找到在这里。

根据Android O中的新特性,XML字体资源作为新特性可用。

添加字体作为资源,在Android Studio中执行以下步骤:

1)右键单击res文件夹,进入新建> Android资源目录。出现“新建资源目录”窗口。

2)在“资源类型”列表中,选择字体,然后单击“确定”。

注意:资源目录名必须为字体。

3)在字体文件夹中添加你的字体文件。

您可以在新的资源类型font的帮助下访问字体资源。例如,要访问字体资源,请使用@font/myfont或R.font.myfont。

< p >。字体字体= getResources().getFont(R.font.myfont); textView.setTypeface(字体);< /代码> < / p >

对于新读者

你可以使用这个库 Gloxey定制字体视图 < / p >

gradle依赖

  dependencies{
compile 'io.gloxey.cfv:custom-font-views:1.0.2'
}

如何使用?

创建文件夹资产 -> 字体。复制你的字体到字体文件夹。

使用属性App: font_name = "font_name_string"在视图上应用字体。

例子

   <!--Font Names in srings.xml-->
<string name="aadhunik">aadhunik.ttf</string>
<string name="kung_fool">kungfool.ttf</string>
<string name="skrova">skrova.otf</string>
<string name="painting_in_the_sun_light">painting_in_the_sun_light.ttf</string>


<!--Include views in layout.xml-->
<io.gloxey.cfv.CFTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Aadhunik"
android:textColor="#ff00"
android:textSize="40sp"
app:font_name="@string/aadhunik" />


<io.gloxey.cfv.CFButton
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Kung Fool"
android:textColor="#154748"
app:font_name="@string/kung_fool" />


<io.gloxey.cfv.CFEditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Hello world"
android:textSize="30sp"
app:font_name="@string/skrova" />


<io.gloxey.cfv.CFCheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="Painting In The Sun Light"
android:textSize="30sp"
app:font_name="@string/painting_in_the_sun_light" />

有很多方法来设置自定义字体家族在字段和我使用如下。

添加字体作为资源,在Android Studio中执行以下步骤:

1)右键单击res文件夹,进入New > Android资源目录。出现“新建资源目录”窗口。

2)在“资源类型”列表中选择“字体”,单击“确定”。

注意:资源目录名必须为字体。

在字体文件夹中添加你的字体文件。 enter image description here < / p >

在xml文件中添加所需视图中的字体:

enter image description here

注:但你需要做到以下几点:

  1. Android Studio 3.0以上的金丝雀。

  2. 你的Activity扩展了AppCompatActivity。

  3. 像这样更新你的Gradle文件:

    compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
minSdkVersion 19
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

buildtoolsVersion以上到26和最小targetSdkVersion需要26

  1. 在构建中添加依赖项。gradle文件:
classpath 'com.android.tools.build:gradle:3.0.0-beta4'
  1. gradle-wrapper.properties:
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip

Android 8.0 (API 26)引入了与字体相关的新功能。

1)字体可以作为资源使用。

2)可下载的字体。

如果你想在android应用程序中使用外部字体,你可以在apk中包含字体文件或配置可下载的字体。

包括APK中的字体文件:你可以下载字体文件,将它们保存在res/font文件器中,定义字体族并在样式中使用字体族。

有关使用自定义字体作为资源的更多详细信息,请参见http://www.zoftino.com/android-using-custom-fonts

配置可下载字体:通过提供字体提供程序细节来定义字体,添加字体提供程序证书并在样式中使用字体。

有关可下载字体的详细信息,请参阅http://www.zoftino.com/downloading-fonts-android

我认为我们可以使用谷歌字体而不是下载。ttf文件。这很容易实现。你只需要遵循这些步骤。 步骤1)打开你的项目的layout.xml和属性中的文本视图的选择字体家族(作为参考截图附在后面) enter image description here < / p >

步骤2) in字体家族选择更多字体..选项,如果你的字体不在那里。然后你会看到一个新的窗口将打开,在那里你可以输入你需要的字体&从列表中选择所需的字体,即常规,粗体,斜体等。如下图所示。 enter image description here < / p >

步骤3)然后你会看到一个字体文件夹将自动生成在/res文件夹有你选择的字体xml文件。

enter image description here

然后你可以直接在xml中使用这个字体家族作为

      android:fontFamily="@font/josefin_sans_bold"

或者从专业语法上讲,你可以使用

  Typeface typeface = ResourcesCompat.getFont(this, R.font.app_font);
fontText.setTypeface(typeface);

首先在字体文件夹中添加font.ttf文件。然后在onCreate方法中添加这一行

    Typeface typeface = ResourcesCompat.getFont(getApplicationContext(), R.font.myfont);
mytextView.setTypeface(typeface);

这是我的xml

            <TextView
android:id="@+id/idtext1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="7dp"
android:gravity="center"
android:text="My Text"
android:textColor="#000"
android:textSize="10sp"
/>
现在有很多应用字体的方法,最简单的方法之一是这样的, 1)右键单击res文件夹 打开“New > Android资源目录”

2)从资源类型列表中选择字体,然后单击确定。

3)把你的字体文件放在字体文件夹里。

将字体添加到app/src/main/assets的assets文件夹中 创建一个自定义文本视图,如下所示:

class CustomLightTextView : TextView {


constructor(context: Context) : super(context){
attachFont(context)
}
constructor(context: Context, attrs: AttributeSet):    super(context, attrs){
attachFont(context)
}
constructor(context: Context, attrs: AttributeSet?,    defStyleAttr: Int) : super(context, attrs, defStyleAttr) {
attachFont(context)
}
fun attachFont(context: Context) {
this.setTypeface(FontCache.getInstance().getLightFont(context))
}

添加FontCache:这样你就不必像这样一遍又一遍地创建字体:

class FontCache private constructor(){


val fontMap = HashMap<String,Typeface>()


companion object {
private var mInstance : FontCache?=null
fun getInstance():FontCache = mInstance?: synchronized(this){
return mInstance?:FontCache().also { mInstance=it }
}
}


fun getLightFont(context: Context):Typeface?{
if(!fontMap.containsKey("light")){
Typeface.createFromAsset(context.getAssets(),"Gotham-Book.otf");
fontMap.put("light",Typeface.createFromAsset(context.getAssets(),"Gotham-Book.otf"))
}
return fontMap.get("light")
}

这样就完成了!

附注:从android O,你可以直接添加字体。

把字体放在资产文件夹 然后应用fontfamily: " your fonts

.
我把我的字体文件命名为Poppins-Medium。Tff,重命名为poppins_medium。TFF对我很管用。 其余步骤保持不变:

  • 在res文件夹下创建字体资源目录
  • 将tff文件复制并粘贴到该目录中
  • 然后在XML的TextView中使用fontFamily属性。
  • 如果以上步骤不起作用,你可以使用链接创建该字体的FontFamily

要在运行Android 4.1 (API级别16)及更高版本的设备上使用XML字体功能,请使用支持库26。有关使用支持库的更多信息,请参阅使用支持库一节。

添加字体作为资源,在Android Studio中执行以下步骤:

  1. 右键单击res文件夹,选择New >Android资源目录。

    出现“新建资源目录”窗口。

  2. 在“资源类型”列表中选择“字体”,然后单击“确定”。

  3. 在字体文件夹中添加你的字体文件。

创建字体族 要创建字体族,请在Android Studio中执行以下步骤

  1. 右键单击字体文件夹,点击新建>字体资源文件。出现“新建资源文件”窗口。

  2. 输入文件名,单击“确定”。新的字体资源XML在编辑器中打开。

  3. 将元素中的每个字体文件、样式和权重属性括起来。下面的XML演示了如何在字体资源XML中添加与字体相关的属性: 如果你的minSdkVersion是API级别26或更高

<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:android="http://schemas.android.com/apk/res/android">
<font
android:fontStyle="normal"
android:fontWeight="400"
android:font="@font/lobster_regular" />
<font
android:fontStyle="italic"
android:fontWeight="400"
android:font="@font/lobster_italic" />
</font-family>


如果你的minSdkVersion低于API级别26

<?xml version="1.0" encoding="utf-8"?>
<font-family xmlns:app="http://schemas.android.com/apk/res-auto">
<font
app:font="@font/lobster_italic"
app:fontStyle="normal"
app:fontWeight="400" />
</font-family>

然后你可以像这样在任何地方使用它

android:fontFamily="@font/your_custom_font_file"

芬兰湾的科特林回答

如果你需要在代码方面使用字体,你可以使用这个功能,它也有版本代码控制。

fun getFontJarvisWhite(): Typeface {
return if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) resources.getFont(R.font.jarvis_white)
else context?.let { ResourcesCompat.getFont(it, R.font.jarvis_white) }!!
}

在项目中添加字体

添加字体作为资源,在Android Studio中执行以下步骤:

1 -右键单击res文件夹,选择New >Android资源目录。 系统弹出“新建资源目录”窗口

2 -在“资源类型”列表中,选择“字体”,单击“确定”。 3 -添加您的字体文件在字体文件夹只是一个简单的复制和粘贴。注意字体的名称应该是小写的

使用XML布局中的字体

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fontFamily="@font/lobster"/>

向样式添加字体

<style name="customfontstyle" parent="@android:style/TextAppearance.Small">
<item name="android:fontFamily">@font/lobster</item>
</style>

以编程方式使用字体

芬兰湾的科特林:

val typeface = resources.getFont(R.font.myfont)
textView.typeface = typeface

JAVA:

Typeface typeface = getResources().getFont(R.font.myfont);
textView.setTypeface(typeface);