在Android中查看寻呼机中的自定义字体

时间:2012-10-10 12:37:45

标签: android android-viewpager

我正在开发我正在使用view pager的演示应用程序。现在我想知道我们可以更改视图寻呼机中显示的标题的文本样式。

请提出您的建议。

提前感谢你。

1 个答案:

答案 0 :(得分:0)

工作演示

TextView txt = (TextView) v.findViewById(R.id.custom_font);  

然后更改字体

这样的事情:

switch (position) {
     case 0:
            v = (LinearLayout) LayoutInflater.from(cxt).inflate(R.layout.lcmeter, null);
            TextView txt = (TextView) v.findViewById(R.id.custom_font); 
            Typeface font = Typeface.createFromAsset(getAssets(), "Chantelli_Antiqua.ttf");  
            txt.setTypeface(font); 
            break;
     }