Android Open Source - mobilepower-android Common Menu Fragment






From Project

Back to project page mobilepower-android.

License

The source code is released under:

Apache License

If you think the Android project mobilepower-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (C) 2013 Dario Scoppelletti, <http://www.scoppelletti.it/>.
 * //w  w  w .  j a  v  a2s .  c o m
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package it.scoppelletti.mobilepower.app;

import android.content.*;
import android.support.v4.app.*;
import android.support.v4.view.*;
import android.view.*;
import org.apache.commons.lang3.*;
import it.scoppelletti.mobilepower.ui.resources.R;

/**
 * Voci comuni del men&ugrave;.
 * 
 * @since 1.0
 */
public final class CommonMenuFragment extends Fragment {

    /**
     * Tag del frammento.
     */    
    public static final String TAG = "CommonMenu";

    /**
     * Azione di avvio dell&rsquo;attivit&agrave; di gestione delle impostazioni
     * dell&rsquo;applicazione.
     */
    public static final String ACTION_SETTINGS =
            "it.scoppelletti.mobilepower.intent.action.SETTINGS";
    
    /**
     * Azione di visualizzazione della Guida dell&rsquo;applicazione.
     */
    public static final String ACTION_HELP =
            "it.scoppelletti.mobilepower.intent.action.HELP";
    
    /**
     * Azione di visualizzazione dell&rsquo;informazioni
     * sull&rsquo;applicazione.
     */
    public static final String ACTION_ABOUT =
            "it.scoppelletti.mobilepower.intent.action.ABOUT";
    
    /**
     * Costruttore.
     */
    public CommonMenuFragment() {
        setHasOptionsMenu(true);
    }
    
    /**
     * Istanzia un frammento.
     * 
     * @return Frammento.
     */
    public static CommonMenuFragment newInstance() {
        return new CommonMenuFragment();
    }
    
    /**
     * Imposta la visibilit&agrave; di tutte le voci comuni del men&ugrave;.
     * 
     * @param menu    Men&ugrave;.
     * @param visible Indicatore di visibilit&agrave;.
     */
    public static void setMenuItemVisible(Menu menu, boolean visible) {
        MenuItem menuItem;
        
        menuItem = menu.findItem(R.id.cmd_buy);
        if (menuItem != null) {
            menuItem.setVisible(visible);
        }
        
        menuItem = menu.findItem(R.id.cmd_settings);
        menuItem.setVisible(visible);
        menuItem = menu.findItem(R.id.cmd_help);
        menuItem.setVisible(visible);        
        menuItem = menu.findItem(R.id.cmd_about);
        menuItem.setVisible(visible);        
    }
    
    /**
     * Creazione del men&ugrave;.
     * 
     * @param menu     Men&ugrave;
     * @param inflater Parser del men&ugrave;
     */
    @Override
    public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
        String pkgName;
        MenuItem menuItem;
       
        pkgName = AppUtils.getFullPackageName(getActivity(), true);
        
        if (StringUtils.isBlank(pkgName)) {
            inflater.inflate(R.menu.common, menu);
        } else {
            inflater.inflate(R.menu.demo, menu);
            
            menuItem = menu.findItem(R.id.cmd_buy);
            MenuItemCompat.setShowAsAction(menuItem,
                    MenuItemCompat.SHOW_AS_ACTION_NEVER);            
        }

        menuItem = menu.findItem(R.id.cmd_settings);
        MenuItemCompat.setShowAsAction(menuItem,
                MenuItemCompat.SHOW_AS_ACTION_NEVER);
        
        menuItem = menu.findItem(R.id.cmd_help);
        MenuItemCompat.setShowAsAction(menuItem,
                MenuItemCompat.SHOW_AS_ACTION_NEVER);
        
        menuItem = menu.findItem(R.id.cmd_about);
        MenuItemCompat.setShowAsAction(menuItem,
                MenuItemCompat.SHOW_AS_ACTION_NEVER);         
    }
    
    /**
     * Gestione della selezione di una voce di men&ugrave;.
     * 
     * @param  item Voce di men&ugrave;
     * @return      Indicatore di evento gestito.
     */
    @Override
    public boolean onOptionsItemSelected(MenuItem item) {        
        int itemId = item.getItemId();
        String action = null;
        Intent intent = null;
        Context ctx = getActivity();
        
        if (itemId == R.id.cmd_settings) {
            action = CommonMenuFragment.ACTION_SETTINGS;
        } else if (itemId == R.id.cmd_help) {
            action = CommonMenuFragment.ACTION_HELP;            
        } else if (itemId == R.id.cmd_about) {
            action = CommonMenuFragment.ACTION_ABOUT;
        } else if (itemId == R.id.cmd_buy) {
            intent = AppUtils.newBuyIntent(ctx);
        }
        if (action != null) {
            intent = new Intent(action);
            intent.setPackage(ctx.getPackageName());
        }
        if (intent != null) {
            ctx.startActivity(intent);
            return true;            
        }
        
        return super.onOptionsItemSelected(item);
    }
}




Java Source Code List

it.scoppelletti.mobilepower.app.AboutActivity.java
it.scoppelletti.mobilepower.app.AbstractActivity.java
it.scoppelletti.mobilepower.app.AbstractDialogFragment.java
it.scoppelletti.mobilepower.app.AbstractFragment.java
it.scoppelletti.mobilepower.app.AbstractPreferenceActivity.java
it.scoppelletti.mobilepower.app.ActionBarCompat.java
it.scoppelletti.mobilepower.app.ActionBarSupport.java
it.scoppelletti.mobilepower.app.ActivitySupport.java
it.scoppelletti.mobilepower.app.AppUtils.java
it.scoppelletti.mobilepower.app.CommonMenuFragment.java
it.scoppelletti.mobilepower.app.ConfirmDialogFragment.java
it.scoppelletti.mobilepower.app.DatePickerDialogFragment.java
it.scoppelletti.mobilepower.app.FragmentLayoutController.java
it.scoppelletti.mobilepower.app.FragmentSupport.java
it.scoppelletti.mobilepower.app.HelpActivity.java
it.scoppelletti.mobilepower.app.HelpDialogFragment.java
it.scoppelletti.mobilepower.app.MarketTagHandler.java
it.scoppelletti.mobilepower.app.ProgressDialogFragment.java
it.scoppelletti.mobilepower.app.ReleaseNoteActivity.java
it.scoppelletti.mobilepower.app.bluetooth.ActivityBTManager.java
it.scoppelletti.mobilepower.app.data.DatabaseConnectionManager.java
it.scoppelletti.mobilepower.app.data.DatabaseUpgradeTask.java
it.scoppelletti.mobilepower.app.security.ActivityLicenseClient.java
it.scoppelletti.mobilepower.app.security.LicenseBuyDialogFragment.java
it.scoppelletti.mobilepower.app.security.LicenseDemoDialogFragment.java
it.scoppelletti.mobilepower.app.security.LicenseRetryDialogFragment.java
it.scoppelletti.mobilepower.bluetooth.BTManager.java
it.scoppelletti.mobilepower.bluetooth.BTTask.java
it.scoppelletti.mobilepower.bluetooth.OnBTListener.java
it.scoppelletti.mobilepower.data.DatabaseUpgrader.java
it.scoppelletti.mobilepower.data.OnDatabaseConnectionListener.java
it.scoppelletti.mobilepower.graphics.GraphicTools.java
it.scoppelletti.mobilepower.graphics.SizeF.java
it.scoppelletti.mobilepower.io.IOTools.java
it.scoppelletti.mobilepower.media.DefaultOnScanCompletedListener.java
it.scoppelletti.mobilepower.os.AbstractAsyncTask.java
it.scoppelletti.mobilepower.os.AsyncTaskController.java
it.scoppelletti.mobilepower.os.AsyncTaskHost.java
it.scoppelletti.mobilepower.os.BuildCompat.java
it.scoppelletti.mobilepower.preference.AbstractDialogPreference.java
it.scoppelletti.mobilepower.preference.BTDevicePreference.java
it.scoppelletti.mobilepower.preference.ColorPreference.java
it.scoppelletti.mobilepower.preference.EditTextPreferenceEx.java
it.scoppelletti.mobilepower.preference.IntegerSpinnerPreference.java
it.scoppelletti.mobilepower.preference.PreferenceSavedState.java
it.scoppelletti.mobilepower.preference.SeekBarPreference.java
it.scoppelletti.mobilepower.provider.ContactsContractCompat.java
it.scoppelletti.mobilepower.reflect.MemberCache.java
it.scoppelletti.mobilepower.security.LicenseClient.java
it.scoppelletti.mobilepower.types.SimpleDate.java
it.scoppelletti.mobilepower.types.StringTools.java
it.scoppelletti.mobilepower.types.TimeTools.java
it.scoppelletti.mobilepower.types.ValueTools.java
it.scoppelletti.mobilepower.types.ValueType.java
it.scoppelletti.mobilepower.view.ViewSavedState.java
it.scoppelletti.mobilepower.widget.CompoundControl.java
it.scoppelletti.mobilepower.widget.DateControl.java
it.scoppelletti.mobilepower.widget.ImageButtonCompat.java
it.scoppelletti.mobilepower.widget.IntegerSpinner.java
it.scoppelletti.mobilepower.widget.IntegerTextWatcher.java
it.scoppelletti.mobilepower.widget.WidgetTools.java