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