Skip to content

Instantly share code, notes, and snippets.

@jezinka
Last active March 19, 2017 16:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jezinka/78dae2e2a68f84f5280e08303d50f359 to your computer and use it in GitHub Desktop.
Save jezinka/78dae2e2a68f84f5280e08303d50f359 to your computer and use it in GitHub Desktop.
public class MealListActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
//...//
Toolbar myToolbar = (Toolbar) findViewById(R.id.meal_list_toolbar);
setSupportActionBar(myToolbar);
ActionBar ab = getSupportActionBar();
ab.setDisplayHomeAsUpEnabled(true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment