de.baumann.hhsmoodle.data_courses.Courses_Fragment.java Source code

Java tutorial

Introduction

Here is the source code for de.baumann.hhsmoodle.data_courses.Courses_Fragment.java

Source

/*
This file is part of the HHS Moodle WebApp.
    
HHS Moodle WebApp is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
    
HHS Moodle WebApp is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License
along with the Diaspora Native WebApp.
    
If not, see <http://www.gnu.org/licenses/>.
 */

package de.baumann.hhsmoodle.data_courses;

import android.animation.Animator;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.database.Cursor;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.support.annotation.NonNull;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v4.app.Fragment;
import android.support.v4.view.ViewPager;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.RelativeLayout;
import android.widget.SimpleCursorAdapter;
import android.widget.TextView;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;

import de.baumann.hhsmoodle.R;
import de.baumann.hhsmoodle.data_notes.Notes_helper;
import de.baumann.hhsmoodle.data_random.Random_DbAdapter;
import de.baumann.hhsmoodle.data_subjects.Subject_DbAdapter;
import de.baumann.hhsmoodle.data_todo.Todo_helper;
import de.baumann.hhsmoodle.helper.helper_main;
import de.baumann.hhsmoodle.popup.Popup_files;

public class Courses_Fragment extends Fragment {

    //calling variables
    private Courses_DbAdapter db;
    private ListView lv = null;

    private FloatingActionButton fab;
    private LinearLayout fabLayout1;
    private LinearLayout fabLayout2;
    private boolean isFABOpen = false;
    private SharedPreferences sharedPref;

    private EditText titleInput;
    private EditText teacherInput;
    private EditText roomInput;
    private ViewPager viewPager;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_screen_notes, container, false);

        ImageView imgHeader = (ImageView) rootView.findViewById(R.id.imageView_header);
        helper_main.setImageHeader(getActivity(), imgHeader);

        PreferenceManager.setDefaultValues(getActivity(), R.xml.user_settings, false);
        sharedPref = PreferenceManager.getDefaultSharedPreferences(getActivity());

        RelativeLayout filter_layout = (RelativeLayout) rootView.findViewById(R.id.filter_layout);
        filter_layout.setVisibility(View.GONE);
        lv = (ListView) rootView.findViewById(R.id.listNotes);
        viewPager = (ViewPager) getActivity().findViewById(R.id.viewpager);

        fabLayout1 = (LinearLayout) rootView.findViewById(R.id.fabLayout1);
        fabLayout2 = (LinearLayout) rootView.findViewById(R.id.fabLayout2);
        fab = (FloatingActionButton) rootView.findViewById(R.id.fab);
        TextView fab2_text = (TextView) rootView.findViewById(R.id.text_fab2);
        fab2_text.setText(getString(R.string.courseList_fromText));
        FloatingActionButton fab1 = (FloatingActionButton) rootView.findViewById(R.id.fab1);
        FloatingActionButton fab2 = (FloatingActionButton) rootView.findViewById(R.id.fab2);

        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if (!isFABOpen) {
                    showFABMenu();
                } else {
                    closeFABMenu();
                }
            }
        });

        fab1.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                closeFABMenu();

                android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(getActivity());
                View dialogView = View.inflate(getActivity(), R.layout.dialog_edit_entry, null);

                final EditText edit_title = (EditText) dialogView.findViewById(R.id.note_title_input);
                edit_title.setHint(R.string.title_hint);

                final EditText edit_cont = (EditText) dialogView.findViewById(R.id.note_text_input);
                edit_cont.setHint(R.string.text_hint);

                builder.setView(dialogView);
                builder.setTitle(R.string.number_edit_entry);
                builder.setPositiveButton(R.string.toast_yes, new DialogInterface.OnClickListener() {

                    public void onClick(DialogInterface dialog, int whichButton) {

                        String inputTitle = edit_title.getText().toString().trim();
                        String inputCont = edit_cont.getText().toString().trim();

                        if (db.isExist(inputTitle)) {
                            Snackbar.make(lv, getString(R.string.toast_newTitle), Snackbar.LENGTH_LONG).show();
                        } else {
                            db.insert(inputTitle, inputCont, "", "", helper_main.createDate());
                            dialog.dismiss();
                            setCoursesList();
                            Snackbar.make(lv, R.string.bookmark_added, Snackbar.LENGTH_SHORT).show();
                        }
                    }
                });
                builder.setNegativeButton(R.string.toast_cancel, new DialogInterface.OnClickListener() {

                    public void onClick(DialogInterface dialog, int whichButton) {
                        dialog.cancel();
                    }
                });

                final android.app.AlertDialog dialog2 = builder.create();
                // Display the custom alert dialog on interface
                dialog2.show();
                helper_main.showKeyboard(getActivity(), edit_title);
            }
        });

        fab2.setImageResource(R.drawable.account_multiple_plus);
        fab2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                closeFABMenu();
                Intent mainIntent = new Intent(getActivity(), Popup_files.class);
                mainIntent.setAction("file_chooseText");
                startActivity(mainIntent);
            }
        });

        //calling Notes_DbAdapter
        db = new Courses_DbAdapter(getActivity());
        db.open();

        setCoursesList();
        setHasOptionsMenu(true);

        return rootView;
    }

    private void showFABMenu() {
        isFABOpen = true;
        fabLayout1.setVisibility(View.VISIBLE);
        fabLayout2.setVisibility(View.VISIBLE);

        fab.animate().rotationBy(180);
        fabLayout1.animate().translationY(-getResources().getDimension(R.dimen.standard_55));
        fabLayout2.animate().translationY(-getResources().getDimension(R.dimen.standard_100));
    }

    private void closeFABMenu() {
        isFABOpen = false;
        fab.animate().rotationBy(-180);
        fabLayout1.animate().translationY(0);
        fabLayout2.animate().translationY(0).setListener(new Animator.AnimatorListener() {
            @Override
            public void onAnimationStart(Animator animator) {
            }

            @Override
            public void onAnimationEnd(Animator animator) {
                if (!isFABOpen) {
                    fabLayout1.setVisibility(View.GONE);
                    fabLayout2.setVisibility(View.GONE);
                }
            }

            @Override
            public void onAnimationCancel(Animator animator) {
            }

            @Override
            public void onAnimationRepeat(Animator animator) {
            }
        });
    }

    @Override
    public void onResume() {
        super.onResume();
        if (viewPager.getCurrentItem() == 8) {
            setCoursesList();
        }
    }

    public void doBack() {
        //BackPressed in activity will call this;
        if (isFABOpen) {
            closeFABMenu();
        } else {
            helper_main.onClose(getActivity());
        }
    }

    private void setCoursesList() {

        if (isFABOpen) {
            closeFABMenu();
        }

        //display data
        final int layoutstyle = R.layout.list_item_notes;
        int[] xml_id = new int[] { R.id.textView_title_notes, R.id.textView_des_notes, R.id.textView_create_notes };
        String[] column = new String[] { "courses_title", "courses_content", "courses_creation" };
        final Cursor row = db.fetchAllData();
        SimpleCursorAdapter adapter = new SimpleCursorAdapter(getActivity(), layoutstyle, row, column, xml_id, 0) {
            @Override
            public View getView(final int position, View convertView, ViewGroup parent) {

                View v = super.getView(position, convertView, parent);
                ImageView iv_icon = (ImageView) v.findViewById(R.id.icon_notes);
                iv_icon.setVisibility(View.GONE);

                return v;
            }
        };

        lv.setAdapter(adapter);
        //onClick function
        lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> adapterview, View view, int position, long id) {

                if (isFABOpen) {
                    closeFABMenu();
                }

                Cursor row2 = (Cursor) lv.getItemAtPosition(position);
                final String courses_title = row2.getString(row2.getColumnIndexOrThrow("courses_title"));
                final String courses_content = row2.getString(row2.getColumnIndexOrThrow("courses_content"));

                final CharSequence[] options = { getString(R.string.courseList_todo),
                        getString(R.string.courseList_note), getString(R.string.courseList_random),
                        getString(R.string.courseList_subject), getString(R.string.bookmark_createEvent) };

                new android.app.AlertDialog.Builder(getActivity())
                        .setPositiveButton(R.string.toast_cancel, new DialogInterface.OnClickListener() {

                            public void onClick(DialogInterface dialog, int whichButton) {
                                dialog.cancel();
                            }
                        }).setItems(options, new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog, int item) {
                                if (options[item].equals(getString(R.string.courseList_random))) {

                                    android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(
                                            getActivity());
                                    View dialogView = View.inflate(getActivity(), R.layout.dialog_edit_entry, null);

                                    final EditText edit_title = (EditText) dialogView
                                            .findViewById(R.id.note_title_input);
                                    edit_title.setHint(R.string.title_hint);
                                    edit_title.setText(courses_title);

                                    final EditText edit_cont = (EditText) dialogView
                                            .findViewById(R.id.note_text_input);
                                    edit_cont.setHint(R.string.text_hint);
                                    edit_cont.setText(courses_content);

                                    builder.setView(dialogView);
                                    builder.setTitle(R.string.number_edit_entry);
                                    builder.setPositiveButton(R.string.toast_yes,
                                            new DialogInterface.OnClickListener() {

                                                public void onClick(DialogInterface dialog, int whichButton) {
                                                }
                                            });
                                    builder.setNegativeButton(R.string.toast_cancel,
                                            new DialogInterface.OnClickListener() {

                                                public void onClick(DialogInterface dialog, int whichButton) {
                                                    dialog.cancel();
                                                }
                                            });

                                    final android.app.AlertDialog dialog2 = builder.create();
                                    // Display the custom alert dialog on interface
                                    dialog2.show();

                                    dialog2.getButton(android.support.v7.app.AlertDialog.BUTTON_POSITIVE)
                                            .setOnClickListener(new View.OnClickListener() {
                                                @Override
                                                public void onClick(View v) {
                                                    //Do stuff, possibly set wantToCloseDialog to true then...
                                                    Random_DbAdapter db = new Random_DbAdapter(getActivity());
                                                    db.open();

                                                    String inputTitle = edit_title.getText().toString().trim();
                                                    String inputCont = edit_cont.getText().toString().trim();

                                                    if (db.isExist(inputTitle)) {
                                                        Snackbar.make(edit_title,
                                                                getString(R.string.toast_newTitle),
                                                                Snackbar.LENGTH_LONG).show();
                                                    } else {
                                                        db.insert(inputTitle, inputCont, "", "",
                                                                helper_main.createDate());
                                                        dialog2.dismiss();
                                                    }
                                                }
                                            });
                                    helper_main.showKeyboard(getActivity(), edit_title);
                                }

                                if (options[item].equals(getString(R.string.courseList_note))) {
                                    Notes_helper.newNote(getActivity(), courses_title, "", "", "", "", "");
                                }

                                if (options[item].equals(getString(R.string.courseList_todo))) {
                                    Todo_helper.newTodo(getActivity(), courses_title, courses_content,
                                            getActivity().getString(R.string.note_content));
                                }

                                if (options[item].equals(getString(R.string.courseList_subject))) {

                                    LayoutInflater inflater = getActivity().getLayoutInflater();

                                    final ViewGroup nullParent = null;
                                    View dialogView = inflater.inflate(R.layout.dialog_edit_subject, nullParent);

                                    titleInput = (EditText) dialogView.findViewById(R.id.subject_title_);
                                    titleInput.setSelection(titleInput.getText().length());
                                    titleInput.setText("");
                                    teacherInput = (EditText) dialogView.findViewById(R.id.subject_teacher);
                                    teacherInput.setText(courses_title);
                                    roomInput = (EditText) dialogView.findViewById(R.id.subject_room);
                                    roomInput.setText("");
                                    helper_main.showKeyboard(getActivity(), titleInput);

                                    final ImageButton be = (ImageButton) dialogView
                                            .findViewById(R.id.imageButtonPri);
                                    assert be != null;
                                    be.setImageResource(R.drawable.circle_grey);
                                    sharedPref.edit().putString("subject_color", "11").apply();

                                    be.setOnClickListener(new View.OnClickListener() {

                                        @Override
                                        public void onClick(View arg0) {

                                            final helper_main.Item[] items = {
                                                    new helper_main.Item(getString(R.string.subjects_color_red),
                                                            R.drawable.circle_red),
                                                    new helper_main.Item(getString(R.string.subjects_color_pink),
                                                            R.drawable.circle_pink),
                                                    new helper_main.Item(getString(R.string.subjects_color_purple),
                                                            R.drawable.circle_purple),
                                                    new helper_main.Item(getString(R.string.subjects_color_blue),
                                                            R.drawable.circle_blue),
                                                    new helper_main.Item(getString(R.string.subjects_color_teal),
                                                            R.drawable.circle_teal),
                                                    new helper_main.Item(getString(R.string.subjects_color_green),
                                                            R.drawable.circle_green),
                                                    new helper_main.Item(getString(R.string.subjects_color_lime),
                                                            R.drawable.circle_lime),
                                                    new helper_main.Item(getString(R.string.subjects_color_yellow),
                                                            R.drawable.circle_yellow),
                                                    new helper_main.Item(getString(R.string.subjects_color_orange),
                                                            R.drawable.circle_orange),
                                                    new helper_main.Item(getString(R.string.subjects_color_brown),
                                                            R.drawable.circle_brown),
                                                    new helper_main.Item(getString(R.string.subjects_color_grey),
                                                            R.drawable.circle_grey), };

                                            ListAdapter adapter = new ArrayAdapter<helper_main.Item>(getActivity(),
                                                    android.R.layout.select_dialog_item, android.R.id.text1,
                                                    items) {
                                                @NonNull
                                                public View getView(int position, View convertView,
                                                        @NonNull ViewGroup parent) {
                                                    //Use super class to create the View
                                                    View v = super.getView(position, convertView, parent);
                                                    TextView tv = (TextView) v.findViewById(android.R.id.text1);
                                                    tv.setTextSize(18);
                                                    tv.setCompoundDrawablesWithIntrinsicBounds(items[position].icon,
                                                            0, 0, 0);
                                                    //Add margin between image and text (support various screen densities)
                                                    int dp5 = (int) (24 * getActivity().getResources()
                                                            .getDisplayMetrics().density + 0.5f);
                                                    tv.setCompoundDrawablePadding(dp5);

                                                    return v;
                                                }
                                            };

                                            new android.app.AlertDialog.Builder(getActivity())
                                                    .setPositiveButton(R.string.toast_cancel,
                                                            new DialogInterface.OnClickListener() {

                                                                public void onClick(DialogInterface dialog,
                                                                        int whichButton) {
                                                                    dialog.cancel();
                                                                }
                                                            })
                                                    .setAdapter(adapter, new DialogInterface.OnClickListener() {
                                                        public void onClick(DialogInterface dialog, int item) {
                                                            if (item == 0) {
                                                                be.setImageResource(R.drawable.circle_red);
                                                                sharedPref.edit().putString("subject_color", "1")
                                                                        .apply();
                                                            } else if (item == 1) {
                                                                be.setImageResource(R.drawable.circle_pink);
                                                                sharedPref.edit().putString("subject_color", "2")
                                                                        .apply();
                                                            } else if (item == 2) {
                                                                be.setImageResource(R.drawable.circle_purple);
                                                                sharedPref.edit().putString("subject_color", "3")
                                                                        .apply();
                                                            } else if (item == 3) {
                                                                be.setImageResource(R.drawable.circle_blue);
                                                                sharedPref.edit().putString("subject_color", "4")
                                                                        .apply();
                                                            } else if (item == 4) {
                                                                be.setImageResource(R.drawable.circle_teal);
                                                                sharedPref.edit().putString("subject_color", "5")
                                                                        .apply();
                                                            } else if (item == 5) {
                                                                be.setImageResource(R.drawable.circle_green);
                                                                sharedPref.edit().putString("subject_color", "6")
                                                                        .apply();
                                                            } else if (item == 6) {
                                                                be.setImageResource(R.drawable.circle_lime);
                                                                sharedPref.edit().putString("subject_color", "7")
                                                                        .apply();
                                                            } else if (item == 7) {
                                                                be.setImageResource(R.drawable.circle_yellow);
                                                                sharedPref.edit().putString("subject_color", "8")
                                                                        .apply();
                                                            } else if (item == 8) {
                                                                be.setImageResource(R.drawable.circle_orange);
                                                                sharedPref.edit().putString("subject_color", "9")
                                                                        .apply();
                                                            } else if (item == 9) {
                                                                be.setImageResource(R.drawable.circle_brown);
                                                                sharedPref.edit().putString("subject_color", "10")
                                                                        .apply();
                                                            } else if (item == 10) {
                                                                be.setImageResource(R.drawable.circle_grey);
                                                                sharedPref.edit().putString("subject_color", "11")
                                                                        .apply();
                                                            }
                                                        }
                                                    }).show();
                                        }
                                    });

                                    android.support.v7.app.AlertDialog.Builder builder = new android.support.v7.app.AlertDialog.Builder(
                                            getActivity());
                                    builder.setTitle(R.string.subjects_edit);
                                    builder.setView(dialogView);
                                    builder.setPositiveButton(R.string.toast_yes,
                                            new DialogInterface.OnClickListener() {

                                                public void onClick(DialogInterface dialog, int whichButton) {
                                                    Subject_DbAdapter db = new Subject_DbAdapter(getActivity());
                                                    db.open();

                                                    String inputTitle = titleInput.getText().toString().trim();
                                                    String inputTeacher = teacherInput.getText().toString().trim();
                                                    String inputRoom = roomInput.getText().toString().trim();

                                                    Date date = new Date();
                                                    DateFormat dateFormat = new SimpleDateFormat(
                                                            "yy-MM-dd_HH-mm-ss", Locale.getDefault());
                                                    String creation = dateFormat.format(date);

                                                    if (db.isExist(inputTitle)) {
                                                        Snackbar.make(titleInput,
                                                                getString(R.string.toast_newTitle),
                                                                Snackbar.LENGTH_LONG).show();
                                                    } else {
                                                        db.insert(inputTitle, inputTeacher,
                                                                sharedPref.getString("subject_color", ""),
                                                                inputRoom, creation);
                                                        dialog.dismiss();
                                                    }

                                                }
                                            });
                                    builder.setNegativeButton(R.string.toast_cancel,
                                            new DialogInterface.OnClickListener() {

                                                public void onClick(DialogInterface dialog, int whichButton) {
                                                    dialog.cancel();
                                                }
                                            });

                                    final android.support.v7.app.AlertDialog dialog2 = builder.create();
                                    dialog2.show();
                                }

                                if (options[item].equals(getString(R.string.bookmark_createEvent))) {
                                    helper_main.createCalendarEvent(getActivity(), courses_title, courses_content);
                                }

                            }
                        }).show();
            }
        });

        lv.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
            public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {

                if (isFABOpen) {
                    closeFABMenu();
                }

                Cursor row2 = (Cursor) lv.getItemAtPosition(position);
                final String _id = row2.getString(row2.getColumnIndexOrThrow("_id"));
                final String courses_title = row2.getString(row2.getColumnIndexOrThrow("courses_title"));
                final String courses_content = row2.getString(row2.getColumnIndexOrThrow("courses_content"));
                final String courses_icon = row2.getString(row2.getColumnIndexOrThrow("courses_icon"));
                final String courses_attachment = row2.getString(row2.getColumnIndexOrThrow("courses_attachment"));
                final String courses_creation = row2.getString(row2.getColumnIndexOrThrow("courses_creation"));

                final CharSequence[] options = { getString(R.string.number_edit_entry),
                        getString(R.string.bookmark_remove_bookmark) };
                new android.app.AlertDialog.Builder(getActivity())
                        .setPositiveButton(R.string.toast_cancel, new DialogInterface.OnClickListener() {

                            public void onClick(DialogInterface dialog, int whichButton) {
                                dialog.cancel();
                            }
                        }).setItems(options, new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog, int item) {

                                if (options[item].equals(getString(R.string.number_edit_entry))) {

                                    android.app.AlertDialog.Builder builder = new android.app.AlertDialog.Builder(
                                            getActivity());
                                    View dialogView = View.inflate(getActivity(), R.layout.dialog_edit_entry, null);

                                    final EditText edit_title = (EditText) dialogView
                                            .findViewById(R.id.note_title_input);
                                    edit_title.setHint(R.string.title_hint);
                                    edit_title.setText(courses_title);

                                    final EditText edit_cont = (EditText) dialogView
                                            .findViewById(R.id.note_text_input);
                                    edit_cont.setHint(R.string.text_hint);
                                    edit_cont.setText(courses_content);

                                    builder.setView(dialogView);
                                    builder.setTitle(R.string.number_edit_entry);
                                    builder.setPositiveButton(R.string.toast_yes,
                                            new DialogInterface.OnClickListener() {

                                                public void onClick(DialogInterface dialog, int whichButton) {

                                                    String inputTitle = edit_title.getText().toString().trim();
                                                    String inputCont = edit_cont.getText().toString().trim();
                                                    db.update(Integer.parseInt(_id), inputTitle, inputCont,
                                                            courses_icon, courses_attachment, courses_creation);
                                                    setCoursesList();
                                                    Snackbar.make(lv, R.string.bookmark_added,
                                                            Snackbar.LENGTH_SHORT).show();
                                                }
                                            });
                                    builder.setNegativeButton(R.string.toast_cancel,
                                            new DialogInterface.OnClickListener() {

                                                public void onClick(DialogInterface dialog, int whichButton) {
                                                    dialog.cancel();
                                                }
                                            });

                                    final android.app.AlertDialog dialog2 = builder.create();
                                    // Display the custom alert dialog on interface
                                    dialog2.show();
                                    helper_main.showKeyboard(getActivity(), edit_title);
                                }

                                if (options[item].equals(getString(R.string.bookmark_remove_bookmark))) {

                                    Snackbar snackbar = Snackbar
                                            .make(lv, R.string.note_remove_confirmation, Snackbar.LENGTH_LONG)
                                            .setAction(R.string.toast_yes, new View.OnClickListener() {
                                                @Override
                                                public void onClick(View view) {
                                                    db.delete(Integer.parseInt(_id));
                                                    setCoursesList();
                                                }
                                            });
                                    snackbar.show();
                                }

                            }
                        }).show();
                return true;
            }
        });
    }

    @Override
    public void onPrepareOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        super.onPrepareOptionsMenu(menu);
        menu.findItem(R.id.action_filter).setVisible(false);
        menu.findItem(R.id.action_sort).setVisible(false);
        getActivity().setTitle(R.string.courseList_title);
        setCoursesList();
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {

        switch (item.getItemId()) {

        case R.id.action_help:
            helper_main.switchToActivity(getActivity(), Courses_Help.class, false);
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}