|
| 1 | +/* |
| 2 | + * Copyright (C) 2015 The Android Open Source Project |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +package com.example.android.testing.notes; |
| 18 | + |
| 19 | +import com.example.android.testing.notes.util.ActivityUtils; |
| 20 | +import com.example.android.testing.notes.view.AddNoteFragment; |
| 21 | +import com.example.android.testing.notes.view.NotesFragment; |
| 22 | + |
| 23 | +import android.os.Bundle; |
| 24 | +import android.support.design.widget.NavigationView; |
| 25 | +import android.support.v4.app.Fragment; |
| 26 | +import android.support.v4.app.FragmentManager; |
| 27 | +import android.support.v4.app.FragmentTransaction; |
| 28 | +import android.support.v4.view.GravityCompat; |
| 29 | +import android.support.v4.widget.DrawerLayout; |
| 30 | +import android.support.v7.app.ActionBar; |
| 31 | +import android.support.v7.app.AppCompatActivity; |
| 32 | +import android.support.v7.widget.Toolbar; |
| 33 | +import android.view.MenuItem; |
| 34 | +import android.widget.Toast; |
| 35 | + |
| 36 | +public class NotesActivity extends AppCompatActivity { |
| 37 | + |
| 38 | + private DrawerLayout mDrawerLayout; |
| 39 | + |
| 40 | + @Override |
| 41 | + protected void onCreate(Bundle savedInstanceState) { |
| 42 | + super.onCreate(savedInstanceState); |
| 43 | + setContentView(R.layout.activity_notes); |
| 44 | + |
| 45 | + initFragment(NotesFragment.newInstance()); |
| 46 | + |
| 47 | + // TODO create a presenter and view for this logic and wire it up (Toolbar + Drawer) |
| 48 | + // + write unit and UI tests. |
| 49 | + // Set up the toolbar. |
| 50 | + Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); |
| 51 | + setSupportActionBar(toolbar); |
| 52 | + final ActionBar ab = getSupportActionBar(); |
| 53 | + ab.setHomeAsUpIndicator(R.drawable.ic_menu); |
| 54 | + ab.setDisplayHomeAsUpEnabled(true); |
| 55 | + |
| 56 | + // Set up the navigation drawer. |
| 57 | + mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout); |
| 58 | + mDrawerLayout.setStatusBarBackground(R.color.colorPrimaryDark); |
| 59 | + NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view); |
| 60 | + if (navigationView != null) { |
| 61 | + setupDrawerContent(navigationView); |
| 62 | + } |
| 63 | + |
| 64 | + } |
| 65 | + |
| 66 | + private void initFragment(Fragment notesFragment) { |
| 67 | + // Add the NotesView to the layout |
| 68 | + FragmentManager fragmentManager = getSupportFragmentManager(); |
| 69 | + FragmentTransaction transaction = fragmentManager.beginTransaction(); |
| 70 | + transaction.add(R.id.contentFrame, notesFragment); |
| 71 | + transaction.commit(); |
| 72 | + } |
| 73 | + |
| 74 | + @Override |
| 75 | + public boolean onOptionsItemSelected(MenuItem item) { |
| 76 | + switch (item.getItemId()) { |
| 77 | + case android.R.id.home: |
| 78 | + // Open the navigation drawer when the home icon is selected from the toolbar. |
| 79 | + mDrawerLayout.openDrawer(GravityCompat.START); |
| 80 | + return true; |
| 81 | + } |
| 82 | + return super.onOptionsItemSelected(item); |
| 83 | + } |
| 84 | + |
| 85 | + private void setupDrawerContent(NavigationView navigationView) { |
| 86 | + navigationView.setNavigationItemSelectedListener( |
| 87 | + new NavigationView.OnNavigationItemSelectedListener() { |
| 88 | + @Override |
| 89 | + public boolean onNavigationItemSelected(MenuItem menuItem) { |
| 90 | + switch (menuItem.getItemId()) { |
| 91 | + // TODO figure out what we want to do for the drawer |
| 92 | + case R.id.drawer_home: |
| 93 | + Toast.makeText(NotesActivity.this, "Notes", Toast.LENGTH_SHORT) |
| 94 | + .show(); |
| 95 | + break; |
| 96 | + case R.id.drawer_statistics: |
| 97 | + Toast.makeText(NotesActivity.this, "Statistics", Toast.LENGTH_SHORT) |
| 98 | + .show(); |
| 99 | + break; |
| 100 | + } |
| 101 | + // Close the navigation drawer when an item is selected. |
| 102 | + menuItem.setChecked(true); |
| 103 | + mDrawerLayout.closeDrawers(); |
| 104 | + return true; |
| 105 | + } |
| 106 | + }); |
| 107 | + } |
| 108 | + |
| 109 | + public void showAddNoteFragment() { |
| 110 | + ActivityUtils.showFragment(getSupportFragmentManager(), R.id.contentFrame, |
| 111 | + AddNoteFragment.newInstance(), true); |
| 112 | + } |
| 113 | +} |
0 commit comments