Android action bar to set title of window

The action bar is a window feature to identifies the application. We can easily use the setTitle API to set title.

ActionBar ab = getActionBar();
ab.setTitle(R.string.title);
detail please see android developer Action Bar

0 意見: