sans-serif-thin默认为斜体?

时间:2013-06-26 15:02:02

标签: android

我正在尝试在我的一个布局中使用roboto-thin字体但是当我将字体系列设置为“sans-serif-thin”时,字体默认为斜体,我无法强制它正常。

<TextView
    android:id="@+id/textLabel"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/firstLabel"
    android:fontFamily="sans-serif-thin"
    android:text="for this week"
    android:textSize="30sp"
    android:textStyle="normal"
    android:layout_marginTop="-15dp" />

有人能告诉我在布局中使用roboto-thin普通风格字体的正确方法吗?

2 个答案:

答案 0 :(得分:1)

我在4.2.2和2.2设备上测试了你的代码,都显示正常的字体,没有斜体。也许您已在代码中的某处动态设置了不同的文本样式。

答案 1 :(得分:0)

您应该在资产文件夹中创建文件夹字体,然后在其中删除字体XX.ttf。 然后,使用:

TextView txt = (TextView) findViewById(R.id.title);  
Typeface font = Typeface.createFromAsset(getAssets(), "XX.ttf");  
txt.setTypeface(font);