Search code examples
androidandroid-custom-viewandroid-actionbar-compat

Custom font in android action bar without making custom Actionbar


My question is i want to change font of action bar without making custom layout for action bar like implment text view and then apply typeface on that text view because i want to too subtitle bar text so what is solution for it


Solution

  • Try following code in onCreate()

    int titleId = getResources().getIdentifier("action_bar_title", "id",
                "android");
        TextView txtTitle = (TextView) findViewById(titleId);
        txtTitle.setTextColor(getResources().getColor(R.color.title_color));
        txtTitle.setTypeface((Typeface.createFromAsset(this.getAssets(),"FuturaBoldBT.ttf")));
    

    Hope this helps