Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.widget.TextView;
import android.widget.Toolbar;

public class Main {
    private static TextView getTitleTextView(Toolbar toolbar) {
        TextView textView = null;
        for (int i = 0; i < toolbar.getChildCount(); i++) {
            if (toolbar.getChildAt(i).getClass() == TextView.class) {
                textView = (TextView) toolbar.getChildAt(i);
            }
        }
        return textView;
    }
}