List of usage examples for android.view Window setTitle
public abstract void setTitle(CharSequence title);
From source file:android.app.Activity.java
protected void onTitleChanged(CharSequence title, int color) { if (mTitleReady) { final Window win = getWindow(); if (win != null) { win.setTitle(title); if (color != 0) { win.setTitleColor(color); }//from w w w.jav a 2 s . c om } } }