How to change CollapsingToolbarLayout typeface and size? How to change CollapsingToolbarLayout typeface and size? android android

How to change CollapsingToolbarLayout typeface and size?


Update

Before we dive into the code let's first decide the textSize for our CollapsingToolbarLayout. Google published a website called material.io, this website also explains the best way on how to deal with Typography.

The article mentioned about "Heading" category which also explains the recommended font size to use in sp.

enter image description here

Although the article never mentioned the recommended CollapsingToolbarLayout's expanded size but the library com.android.support:design provides a TextAppearance for our case. With some digging with the source it turns out that that the size is 34sp (not mentioned in the article).

So how about the collapsed size? Luckily the article mentioned something and it is 20sp.

enter image description here

And the best TextAppearance so far that fits in collpased mode is TextAppearance.AppCompat.Title while our expanded mode TextAppearance is TextAppearance.Design.CollapsingToolbar.Expanded.

If you observe all our examples above all of them uses the REGULAR version of the font which is safe to say that Roboto regular will do the task unless you have specific requirements.

It might be too much work downloading the fonts itself why not use a library that has all the needed Roboto fonts? So I introduce a calligraphy library for Roboto e.g. Typer.

dependencies {    implementation 'com.android.support:design:28.0.0'    implementation 'com.rhexgomez.typer:typer-roboto:2.0.0'}
<android.support.design.widget.CollapsingToolbarLayout            android:id="@+id/collapsing_toolbar"            android:layout_width="match_parent"            android:layout_height="match_parent"            android:fitsSystemWindows="true"            app:contentScrim="?attr/colorPrimary"            app:expandedTitleMarginEnd="64dp"            app:expandedTitleMarginStart="48dp"            app:expandedTitleTextAppearance="@style/TextAppearance.Design.CollapsingToolbar.Expanded"            app:collapsedTitleTextAppearance="@style/TextAppearance.AppCompat.Title"            app:layout_scrollFlags="scroll|exitUntilCollapsed">

Java

// Java exampleCollapsingToolbarLayout collapsingToolbar = findViewById(R.id.collapsing_toolbar);collapsingToolbar.setCollapsedTitleTypeface(TyperRoboto.ROBOTO_REGULAR());collapsingToolbar.setExpandedTitleTypeface(TyperRoboto.ROBOTO_REGULAR());

Kotlin

// Kotlin examplecollapsing_toolbar.apply {    setCollapsedTitleTypeface(TyperRoboto.ROBOTO_REGULAR)    setExpandedTitleTypeface(TyperRoboto.ROBOTO_REGULAR)}

This is a 2019 update because the Typer library is updated! I am also the author of the library.


You can use the new public methods, on CollapsingToolbarLayout to set the typeface for the collapsed and expanded title, like so:

final Typeface tf = Typeface.createFromAsset(context.getAssets(), "fonts/FrutigerLTStd-Light.otf");collapsingToolbar.setCollapsedTitleTypeface(tf);collapsingToolbar.setExpandedTitleTypeface(tf);

This seems to have been added in the design support library 23.1.0, and is a very welcome addition.


You can do something like this:

mCollapsingToolbarLayout.setTitle(getTitle());mCollapsingToolbarLayout.setExpandedTitleTextAppearance(R.style.ExpandedAppBar);mCollapsingToolbarLayout.setCollapsedTitleTextAppearance(R.style.CollapsedAppBar);

Corresponding textview style could be:

<style name="ExpandedAppBar" parent="@android:style/TextAppearance.Medium">    <item name="android:textSize">28sp</item>    <item name="android:textColor">#000</item>    <item name="android:textStyle">bold</item></style><style name="CollapsedAppBar" parent="@android:style/TextAppearance.Medium">    <item name="android:textSize">24sp</item>    <item name="android:textColor">@color/white</item>    <item name="android:textStyle">normal</item></style>

also see here for reference.