/MealListActivity - toolbar.java Secret
Last active
March 19, 2017 16:02
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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