Java tutorial
/** * The MIT License (MIT) * Copyright (c) 2012 David Carver * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS * OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package us.nineworlds.serenity.ui.activity; import us.nineworlds.serenity.R; import us.nineworlds.serenity.ui.listeners.SettingsMenuDrawerOnItemClickedListener; import us.nineworlds.serenity.widgets.DrawerLayout; import android.content.res.Configuration; import android.graphics.drawable.ColorDrawable; import android.os.Build; import android.os.Bundle; import android.support.v4.app.ActionBarDrawerToggle; import android.support.v7.app.ActionBar; import android.view.MenuItem; import android.view.Window; import android.widget.Button; import android.widget.LinearLayout; import android.widget.ListView; public abstract class SerenityDrawerLayoutActivity extends SerenityActivity { protected DrawerLayout drawerLayout; protected ListView drawerList; protected ActionBarDrawerToggle drawerToggle; protected ActionBar actionBar; protected LinearLayout linearDrawerLayout; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); supportRequestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS); if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.HONEYCOMB_MR2) { supportRequestWindowFeature(Window.FEATURE_PROGRESS); } actionBar = getSupportActionBar(); actionBar.setDisplayUseLogoEnabled(true); actionBar.setBackgroundDrawable(new ColorDrawable(R.color.card_background)); } @Override protected void onPostCreate(Bundle savedInstanceState) { super.onPostCreate(savedInstanceState); if (drawerToggle != null) { drawerToggle.syncState(); } if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) { setSupportProgressBarIndeterminate(true); } } @Override public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); if (drawerToggle != null) { drawerToggle.onConfigurationChanged(newConfig); } } @Override public boolean onOptionsItemSelected(MenuItem item) { if (drawerToggle.onOptionsItemSelected(item)) { return true; } return super.onOptionsItemSelected(item); } protected void initMenuDrawerViews() { drawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout); linearDrawerLayout = (LinearLayout) findViewById(R.id.left_drawer); Button settingsButton = (Button) findViewById(R.id.drawer_settings); settingsButton.setOnClickListener(new SettingsMenuDrawerOnItemClickedListener(drawerLayout)); drawerList = (ListView) drawerLayout.findViewById(R.id.left_drawer_list); } }