How to set subTitle in CollapsingToolbarLayout android

2.3k Views Asked by At

I need to set Title and SubTitle in my app. But In new design library using CollapsingToolbarLayout can able to set Title and scrolling with image is working fine. How to set the SubTitle in CollapsingToolbarLayout?

1

There are 1 best solutions below

0
On

We can set the Title and subtitle for Toolbar programmatically like this :

    Toolbar toolbar = (Toolbar)findViewById(R.id.toolbar);
    toolbar.setTitle(getString(R.string.history));
    toolbar.setSubtitle(getString(R.string.month));