안녕하세요. 타이틀의 폰트를 외부폰트로 변경하고 싶은데 어떻게 해야할까요??
검색해보니
Integer titleId = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
TextView title = (TextView) getWindow().findViewById(titleId);
// check for null and manipulate the title as see fit
title.setTextColor(getResources().getColor(R.color.black));
title.setTypeface(face);
이런 소스는 해봤는데 적용이 안되더라구요.
어떻게 해야할까요??