FileDocCategorySizeDatePackage
MenuItemCompatIcs.javaAPI DocAndroid 5.1 API2265Thu Mar 12 22:22:56 GMT 2015android.support.v4.view

MenuItemCompatIcs.java

/*
 * Copyright (C) 2013 The Android Open Source Project
 *
 * 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 android.support.v4.view;

import android.view.MenuItem;

class MenuItemCompatIcs {
    public static boolean expandActionView(MenuItem item) {
        return item.expandActionView();
    }

    public static boolean collapseActionView(MenuItem item) {
        return item.collapseActionView();
    }

    public static boolean isActionViewExpanded(MenuItem item) {
        return item.isActionViewExpanded();
    }

    public static MenuItem setOnActionExpandListener(MenuItem item,
            SupportActionExpandProxy listener) {
        return item.setOnActionExpandListener(new OnActionExpandListenerWrapper(listener));
    }

    /**
     * Work around the support lib's build dependency chain. The actual API-lib
     * depends on -ics, but -ics doesn't depend on the API-lib so it doesn't know
     * that MenuItemCompat.OnActionExpandListener exists.
     */
    interface SupportActionExpandProxy {
        boolean onMenuItemActionExpand(MenuItem item);
        boolean onMenuItemActionCollapse(MenuItem item);
    }

    // support => framework
    static class OnActionExpandListenerWrapper implements MenuItem.OnActionExpandListener {
        private SupportActionExpandProxy mWrapped;

        public OnActionExpandListenerWrapper(SupportActionExpandProxy wrapped) {
            mWrapped = wrapped;
        }

        @Override
        public boolean onMenuItemActionExpand(MenuItem item) {
            return mWrapped.onMenuItemActionExpand(item);
        }

        @Override
        public boolean onMenuItemActionCollapse(MenuItem item) {
            return mWrapped.onMenuItemActionCollapse(item);
        }
    }
}