Skip to content

Instantly share code, notes, and snippets.

View SenthilEternus's full-sized avatar

Senthilkumar S SenthilEternus

View GitHub Profile
@SenthilEternus
SenthilEternus / BaseActivity.java
Created August 19, 2016 14:05 — forked from kevinvanmierlo/BaseActivity.java
Same Navigation Drawer on different Activities
public class BaseActivity extends AppCompatActivity
{
public DrawerLayout drawerLayout;
public ListView drawerList;
private ActionBarDrawerToggle drawerToggle;
protected void onCreate(Bundle savedInstanceState)
{
// R.id.drawer_layout should be in every activity with exactly the same id.
drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);