Seems to be 17dip. Just want to confirm it if anyone knows the exact size.
This works for me.
This is what I do to get the default toolbar style:
This does the trick to keep the default style style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
Then in your activity, you can do:
Toolbar toolbarTop = (Toolbar) findViewById(R.id.toolbar_top);
TextView mTitle = (TextView) toolbarTop.findViewById(R.id.toolbar_title);
mTitle.setText("Custom...");