[Solved] custom font in customAdapter


I used akhilesh0707 answer, but I changed it.

 public customList(Activity activity, List<itemsModel> itemsList) {
    this.activity = activity;
    this.itemsList = itemsList;
    inflater = activity.getLayoutInflater();
    customFontBold = Typeface.createFromAsset(activity.getApplication().getAssets(), "fonts/Assistant-Bold.ttf");
}

Thanks akhilesh0707.

solved custom font in customAdapter