blob: 9a1c7465d6e45be075492a0069a2ba99a193c2b9 [file] [log] [blame]
/*
* Copyright (C) 2020 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.android.car.settings.common.rotary;
import static android.view.ViewGroup.FOCUS_AFTER_DESCENDANTS;
import android.graphics.drawable.Drawable;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.VisibleForTesting;
import com.android.car.ui.utils.DirectManipulationHelper;
/**
* Keeps track of the state of "direct manipulation" Rotary mode for this application window by
* tracking a reference to the {@link View} from which the user first enters into "direct
* manipulation" mode.
*
* <p>See {@link DirectManipulationHandler} for a definition of "direct manipulation".
*/
public class DirectManipulationState {
/** Indicates that the descendant focusability has not been set. */
@VisibleForTesting
static final int UNKNOWN_DESCENDANT_FOCUSABILITY = -1;
/** The view that is in direct manipulation mode, or null if none. */
@Nullable
private View mViewInDirectManipulationMode;
/** The original background of the view in direct manipulation mode. */
@Nullable
private Drawable mOriginalBackground;
/** The original descendant focusability value of the view in direct manipulation mode. */
private int mOriginalDescendantFocusability = UNKNOWN_DESCENDANT_FOCUSABILITY;
public DirectManipulationState() {
}
/** Returns true if Direct Manipulation mode is active, false otherwise. */
public boolean isActive() {
return mViewInDirectManipulationMode != null;
}
/**
* Enables Direct Manipulation mode, and keeps track of {@code view} as the starting point
* of this transition.
* <p>
* In order to visually indicate that we are in direct manipulation mode, we change the
* background color of {@code view}.
*
* @param view the {@link View} from which we entered into Direct Manipulation mode
*/
public void enable(@NonNull View view) {
mViewInDirectManipulationMode = view;
if (mViewInDirectManipulationMode instanceof ViewGroup) {
ViewGroup viewGroup = (ViewGroup) mViewInDirectManipulationMode;
mOriginalDescendantFocusability = viewGroup.getDescendantFocusability();
viewGroup.setDescendantFocusability(FOCUS_AFTER_DESCENDANTS);
}
DirectManipulationHelper.enableDirectManipulationMode(view, /* enable= */ true);
}
/**
* Disables Direct Manipulation mode and restores any visual indicators for the {@link View}
* from which we entered into Direct Manipulation mode.
*/
public void disable() {
DirectManipulationHelper.enableDirectManipulationMode(
mViewInDirectManipulationMode, /* enable= */ false);
// For ViewGroup objects, restore descendant focusability to the previous value.
if (mViewInDirectManipulationMode instanceof ViewGroup
&& mOriginalDescendantFocusability != UNKNOWN_DESCENDANT_FOCUSABILITY) {
ViewGroup viewGroup = (ViewGroup) mViewInDirectManipulationMode;
viewGroup.setDescendantFocusability(mOriginalDescendantFocusability);
}
mViewInDirectManipulationMode = null;
mOriginalDescendantFocusability = UNKNOWN_DESCENDANT_FOCUSABILITY;
}
@VisibleForTesting
View getViewInDirectManipulationMode() {
return mViewInDirectManipulationMode;
}
@VisibleForTesting
int getOriginalDescendantFocusability() {
return mOriginalDescendantFocusability;
}
}