嗨,我想通过使用外部字体在我的可扩展列表视图中更改父文本(主题)的字体。我已经将我的字体放在资产>字体中。背景是在我的代码在这里如何在可扩展列表视图中使用外部字体? (Android Studio)
subjects_adapter.java
public View getGroupView(int parent, boolean isExpanded, View convertView, ViewGroup parentView) {
String group_title = (String) getGroup(parent);
if (convertView == null){
LayoutInflater inflater = (LayoutInflater) ctx.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(R.layout.parent_layout, parentView, false);
}
TextView parent_text_view = (TextView) convertView.findViewById(R.id.parent_text);
Typeface regular = Typeface.createFromAsset(context.getAssets(), "PLAYBILL.ttf");
parent_text_view.setTypeface(regular, Typeface.NORMAL);
parent_text_view.setText(group_title);
return convertView;
}
+0
的字体工作 –
+0
你是什么意思?你可以给我一个示例代码请 –
+0
[如何在Android Studio中使用自定义字体](http://stackoverflow.com/questions/27588965/how-to-use-custom-font-in-android-studio ) –