0
在我的應用程序中,我爲所有文本元素設置了固定的字體大小。對於我正在使用的TextSwitcher,我正在設置像這樣的字體大小。在顯示設置中更改字體大小的Android TextSwitcher大小增加
altitudeSwitcher = (TextSwitcher) findViewById(R.id.altitude);
altitudeSwitcher.setFactory(new ViewFactory() {
@Override
public View makeView() {
GradientColor gd = Gradients.AllGradients().get(2);
TextView t = new TextView(getApplicationContext());
t.setGravity(Gravity.TOP | Gravity.CENTER_HORIZONTAL);
t.setTextSize(50);
t.setTextColor(gd.getTextColor());
return t;
}
});
但是,在顯示設置中將字體大小更改爲巨大,它增加了很多大小。我如何設置固定的字體大小?