115

我的问题很简单:

在我的每个文本视图中,我目前都在使用该属性

android:fontFamily="sans-serif-light"

在后 HC 设备上提供华丽的外观。

不幸的是,这不适用于每个小部件,对于我的 Spinner,我需要覆盖适配器。

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    //You can use the new tf here.

    if(convertView == null || convertView.getTag() == null) {
        // new view - populate 
        convertView = inflater.inflate(android.R.layout.simple_spinner_dropdown_item, parent, false);
        convertView.setTag(new Object());
    }

    CheckedTextView spinner_text=(CheckedTextView) convertView.findViewById(android.R.id.text1);
    //Typeface should be set here...
    return spinner_text;
    }
}

那么,有没有办法通过代码获得完全相同的结果?

PS:不,我不想在资产文件夹中放字体,我只想使用系统一。

4

6 回答 6

180

应该可以使用setTypeface()and Typeface.create()

convertView.setTypeface(Typeface.create("sans-serif-light", Typeface.NORMAL));

请参阅文档

创建一个给定系列名称和选项样式信息的字体对象。如果为名称传递 null,则将选择“默认”字体。可以查询生成的字体对象 ( getStyle()) 以发现它的“真实”风格特征是什么。

请注意,如本评论Typeface.create()所述,过度使用对您的记忆力不利。建议的Hashtable是一个很好的解决方案,但您必须对其进行一些修改,因为您不是从资产创建字体。

于 2013-01-15T18:13:20.370 回答
52

Android 4.1(API 级别 16)和支持库 26 及更高版本

如果你使用 res -> font 文件夹,你可以像这样使用

  val typeface = ResourcesCompat.getFont(Context, R.font.YOUR_FONT)
  TextView.setTypeface(typeface)
于 2018-08-08T08:26:47.453 回答
22

在我看来,仍然有一种方法可以在 TextView 上以编程方式应用系统字体而不会出现任何内存问题,那就是使用textview.setTextAppearance方法:

<style name="styleA">
    <item name="android:fontFamily">sans-serif</item>
    <item name="android:textStyle">bold</item>
    <item name="android:textColor">?android:attr/textColorPrimary</item>
</style>
<style name="styleB">
    <item name="android:fontFamily">sans-serif-light</item>
    <item name="android:textStyle">normal</item>
    <item name="android:textColor">?android:attr/textColorTertiary</item>
</style>


if(condition){
    textView.setTextAppearance(context,R.style.styleA);
}else{
    textView.setTextAppearance(context,R.style.styleB);
}
于 2016-03-30T06:43:36.863 回答
22

动态地,您可以使用这个在 xml 中设置类似于 android:fontFamily 的 fontfamily,

For Custom font:

 TextView tv = ((TextView) v.findViewById(R.id.select_item_title));
 Typeface face=Typeface.createFromAsset(getAssets(),"fonts/mycustomfont.ttf"); 
 tv.setTypeface(face);

For Default font:

 tv.setTypeface(Typeface.create("sans-serif-medium",Typeface.NORMAL));

这些是使用的默认字体系列列表,通过替换双引号字符串“sans-serif-medium”来使用其中的任何一个

FONT FAMILY                    TTF FILE                    

1  casual                      ComingSoon.ttf              
2  cursive                     DancingScript-Regular.ttf   
3  monospace                   DroidSansMono.ttf           
4  sans-serif                  Roboto-Regular.ttf          
5  sans-serif-black            Roboto-Black.ttf            
6  sans-serif-condensed        RobotoCondensed-Regular.ttf 
7  sans-serif-condensed-light  RobotoCondensed-Light.ttf   
8  sans-serif-light            Roboto-Light.ttf            
9  sans-serif-medium           Roboto-Medium.ttf           
10  sans-serif-smallcaps       CarroisGothicSC-Regular.ttf 
11  sans-serif-thin            Roboto-Thin.ttf             
12  serif                      NotoSerif-Regular.ttf       
13  serif-monospace            CutiveMono.ttf              

“mycustomfont.ttf”是 ttf 文件。路径将在src/assets/fonts/mycustomfont.ttf中,您可以在此默认字体系列中参考有关默认字体的更多信息

于 2017-07-26T12:43:12.223 回答
14

选项 1 - API 26 及更高版本

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

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

选项 2 - API 16 及更高版本

// Java
Typeface typeface = ResourcesCompat.getFont(context, R.font.myfont);

// Kotlin
val typeface = ResourcesCompat.getFont(context, R.font.myfont)

在Android Developers Guide中查看完整的补偿。

于 2019-01-09T23:59:34.740 回答
6

可以通过使用

setTypeface(Typeface tf, int style)类的方法TextView

spinner_text.setTypeface(Typeface.SANS_SERIF,Typeface.NORMAL);

于 2016-06-01T10:55:49.347 回答