当我使用Roboto-Italic.ttf字体时,为什么TextView.setTypeface()夸大地增加了我的TextView高度?

时间:2014-03-08 16:25:38

标签: android android-layout fonts textview

我正在尝试在TextView上设置Roboto Light字体。 我从here下载了Roboto字体。

我所做的全部代码是:

sRobotoItalic = Typeface
        .createFromAsset(getContext().getAssets(), "fonts/Roboto_v1.2/Roboto-Italic.ttf");
final TextView textView = (TextView) view.findViewById(R.id.text_view);
textView.setTypeface(sRobotoItalic);

,我的TextView的高度几乎变为实际文本高度的5倍。

我确定这是我的TextView,而不是其他一些视图来改变它的大小(使用背景颜色)并且该特定字体导致问题(我试图在我的TextView上设置不同的字体,没有错当我使用它们时。)

现在,我找到了解决此问题的方法

sRobotoItalic = Typeface
        .createFromAsset(getContext().getAssets(), "fonts/Roboto_v1.2/Roboto-Italic.ttf");
final TextView textView = (TextView) view.findViewById(R.id.text_view);
    textView.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
        @Override
        public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
            int height = v.getHeight();
            mTypefaceUtils.setRobotoItalicTypeFace(passedExamsLabel);
            ((TextView) v).setHeight(height);
        }
    });

但这更像是一个解决方案。如果有更多文本视图存在同样的问题,代码会很快变得混乱。

这是TextView xml(第二个)

            <RelativeLayout
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="@dimen/marginBottom"
                android:layout_marginLeft="4dp"
                android:layout_marginRight="4dp"
                android:layout_marginTop="@dimen/marginTop"
                android:padding="4dp">

                <TextView
                    android:id="@+id/text_view"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentLeft="true"
                    android:layout_centerInParent="true"
                    android:layout_marginLeft="5dp"
                    android:textStyle="italic"
                    android:textSize="@dimen/text_size" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_alignParentRight="true"
                    android:layout_marginRight="10dp"
                    android:text="0"
                    android:textSize="@dimen/text_size"
                    android:textStyle="italic" />
            </RelativeLayout>

我做错了吗?我该怎么修理?

1 个答案:

答案 0 :(得分:1)

好的,不要使用谷歌提供的字体,但那些:https://github.com/android/platform_frameworks_base/tree/master/data/fonts

我从手机中取出字体(N5,5.0),效果很好。