/* * Copyright (C) 2017 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 com.google.android.material.expandable; import android.os.Parcelable; import android.view.View; /** * A widget that has expanded/collapsed state. When the expanded state changes, {@link * androidx.coordinatorlayout.widget.CoordinatorLayout#dispatchDependentViewsChanged an event is * dispatched} so that other widgets may react via a {@link * androidx.coordinatorlayout.widget.CoordinatorLayout.Behavior}. * *

Implementations of this interface should create an instance of {@link ExpandableWidgetHelper} * and forward all calls to it. * *

The expanded state can saved across configuration changes by implementing {@link * View#onSaveInstanceState()} and {@link View#onRestoreInstanceState(Parcelable)}: * *


 * {@literal @}Override
 * protected Parcelable onSaveInstanceState() {
 *   Parcelable superState = super.onSaveInstanceState();
 *   ExtendableSavedState state = new ExtendableSavedState(superState);
 *
 *   state.extendableStates.put(
 *       "expandableWidgetHelper", expandableWidgetHelper.onSaveInstanceState());
 *
 *   return state;
 * }
 *
 * {@literal @}Override
 * protected void onRestoreInstanceState(Parcelable state) {
 *   if (!(state instanceof ExtendableSavedState)) {
 *     super.onRestoreInstanceState(state);
 *     return;
 *   }
 *
 *   ExtendableSavedState ess = (ExtendableSavedState) state;
 *   super.onRestoreInstanceState(ess.getSuperState());
 *
 *   expandableWidgetHelper.onRestoreInstanceState(
 *       ess.extendableStates.get("expandableWidgetHelper"));
 * }
 * 
*/ public interface ExpandableWidget { /** * Returns whether this widget is expanded. * *

Implementations should call {@link ExpandableWidgetHelper#isExpanded()}. */ boolean isExpanded(); /** * Sets the expanded state on this widget. * *

Implementations should call {@link ExpandableWidgetHelper#setExpanded(boolean)}. * * @return true if the expanded state changed as a result of this call. */ boolean setExpanded(boolean expanded); }