I´m trying to change the toolbar Background color programmatically by doing this:
getSupportActionBar().setBackgroundDrawable(newColorDrawable(getResources()
use this to access the textview
public void changeToggleTitle() { if (mToolbar != null) { for(int i= 0; i < mToolbar.getChildCount(); i++){ View v = mToolbar.getChildAt(i); if(v != null && v instanceof TextView){ TextView t = (TextView) v; // Do the magic } } } }