Navigation drawer doesn't close
The navigation drawer in my app is not closing. I am using activities instead of fragments. When i click on any item in the listview , it opens other activities as it should but when i go back, the drawer is still open. I have tried using DrawerLayout.closeDrawers(); but it did not work. How do I close the navigation drawer? Here is my code: Java public class MainActivity extends FragmentActivity { final String[] data ={"Aluminium","Gold","Zinc"}; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main);