3

我在stackoverflow上查看了很多答案和问题,但没有发现任何对我的问题真正有用的东西。

我有两个大小相等且属性相同的textviews,xml布局是这样的(只有textsize不同)

<?xml version="1.0" encoding="utf-8"?>

    <TextView
        android:id="@+id/data_content_left"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight=".50"
        android:gravity="bottom|center"
        android:text="201.5"
        android:textSize="50sp"
        android:textStyle="bold"
        android:singleLine="true"
        android:ems="62" />

    <TextView
        android:id="@+id/data_content_right"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.50"
        android:ems="62"
        android:gravity="center|bottom"
        android:singleLine="true"
        android:text="201.5"
        android:textSize="20sp"
        android:textStyle="bold" />

代码是这样的

包 com.example.fonttest;导入android.os.Bundle;导入android.app.Activity;导入android.graphics.Typeface;导入 android.view.Menu;导入 android.widget.LinearLayout;导入 android.widget.TextView;

公共类 MainActivity 扩展 Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.activity_main);

    TextView textViewLeft  = (TextView) findViewById(R.id.data_content_left);
    TextView textViewRight = (TextView) findViewById(R.id.data_content_right);

    Typeface myTypeface = Typeface.createFromAsset(this.getAssets(), "fonts/wwDigital.ttf");

    textViewLeft.setTypeface(myTypeface, Typeface.NORMAL);
    textViewRight.setTypeface(myTypeface, Typeface.NORMAL);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

}

为什么数字下方的“空白”高度随文本/字体大小而变化?(下图)

如何确定问题是否与字体或文本视图有关?

我正在使用这种字体:[ http://www.dafont.com/ww-digital.font][3]

在此处输入图像描述

4

1 回答 1

1

对文本视图使用相同的字体,即ttf,并在 Textview 中使用 android:ems 来定义它的最大值和最小值。

于 2013-01-24T12:51:45.980 回答