Skip to content

Instantly share code, notes, and snippets.

@muratcanbur
Created March 11, 2015 20:27
Show Gist options
  • Save muratcanbur/8e2efa08c9f7b5985a85 to your computer and use it in GitHub Desktop.
Save muratcanbur/8e2efa08c9f7b5985a85 to your computer and use it in GitHub Desktop.
Use a Toolbar as an Action Bar from Fragment
private void initToolbar(View view) {
mToolbar = (Toolbar) view.findViewById(R.id.toolbar);
((ActionBarActivity) getActivity()).setSupportActionBar(mToolbar);
mToolbar.setTitle(getString(R.string.app_name));
mToolbar.setTitleTextColor(getResources().getColor(android.R.color.white));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment