Skip to content

Instantly share code, notes, and snippets.

@jezinka
Last active March 19, 2017 16:02
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