List of usage examples for android.widget Toolbar getChildCount
public int getChildCount()
From source file:Main.java
private static TextView getTitleTextView(Toolbar toolbar) { TextView textView = null;//ww w .j a v a 2s .co m for (int i = 0; i < toolbar.getChildCount(); i++) { if (toolbar.getChildAt(i).getClass() == TextView.class) { textView = (TextView) toolbar.getChildAt(i); } } return textView; }