我想更改应用程序中的字体。我想在我的应用程序中更改所有组件TextView,怎么做?
答案 0 :(得分:1)
更新的答案:
@Override
public View getView(int position, View view, ViewGroup viewGroup)
{
View v = super.getView(position, view, viewGroup);
((TextView)v).setTypeface(font);
return v;
}
覆盖默认的getView方法,并将字体设置为如上所述的字体。
答案 1 :(得分:0)
我认为最好的方法是为您的应用设置主题。 Applying styles and themes链接应有帮助。