Hola , estoy intentando utilizar una fuente personalizada con el siguiente codigo
Código:
public class QuienesSomosFragment extends Fragment {
public QuienesSomosFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View v = inflater.inflate(R.layout.fragment_quienes_somos, container, false);
TextView txt = (TextView) v.findViewById(R.id.textView);
Typeface font = Typeface.createFromAsset(getActivity().getAssets(), "jonquilles.ttf");
txt.setTypeface(font);
return v;
}
}
Obtengo el siguiente error : native typeface cannot be made