我正在设置我的 TextView 的自定义 trur 类型字体并设置文本大小;然后使用 setText() 方法将文本设置为 TextView。它显示完美的文字。但是当我尝试获取此 TextView 的基线时,它显示 1 或 -1。为什么??
我正在这样做;
TextView tv;
tv.setTypeface(Typeface.createFromAsset(getAssets(),"customFont.ttf"));
tv.setTextSize(20);
tv.setText("My name is Tahir");
tv.getBaseline();
//this returns -1. (if i set Height and width of tv suppose 100 the getBaseline() retruns 1)
tv.getTop();
tv.getBottom();
请帮我看看可能是什么问题???