我正在开发我正在使用view pager的演示应用程序。现在我想知道我们可以更改视图寻呼机中显示的标题的文本样式。
请提出您的建议。
提前感谢你。
答案 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;
}