blob: d9de3db675f94a6b99e9fa7ad306352e9ce9cf3f [file] [log] [blame]
/*
* 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.widget;
import android.os.Build;
import android.support.annotation.NonNull;
import android.support.annotation.RequiresApi;
import android.support.v4.view.GravityCompat;
import android.support.v4.view.ViewCompat;
import android.util.Log;
import android.view.Gravity;
import android.view.View;
import android.widget.PopupWindow;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
/**
* Helper for accessing features in {@link PopupWindow}.
*/
public final class PopupWindowCompat {
static class PopupWindowCompatBaseImpl {
private static Method sSetWindowLayoutTypeMethod;
private static boolean sSetWindowLayoutTypeMethodAttempted;
private static Method sGetWindowLayoutTypeMethod;
private static boolean sGetWindowLayoutTypeMethodAttempted;
public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff,
int gravity) {
final int hgrav = GravityCompat.getAbsoluteGravity(gravity,
ViewCompat.getLayoutDirection(anchor)) & Gravity.HORIZONTAL_GRAVITY_MASK;
if (hgrav == Gravity.RIGHT) {
// Flip the location to align the right sides of the popup and
// anchor instead of left.
xoff -= (popup.getWidth() - anchor.getWidth());
}
popup.showAsDropDown(anchor, xoff, yoff);
}
public void setOverlapAnchor(PopupWindow popupWindow, boolean overlapAnchor) {
// noop
}
public boolean getOverlapAnchor(PopupWindow popupWindow) {
return false;
}
public void setWindowLayoutType(PopupWindow popupWindow, int layoutType) {
if (!sSetWindowLayoutTypeMethodAttempted) {
try {
sSetWindowLayoutTypeMethod = PopupWindow.class.getDeclaredMethod(
"setWindowLayoutType", int.class);
sSetWindowLayoutTypeMethod.setAccessible(true);
} catch (Exception e) {
// Reflection method fetch failed. Oh well.
}
sSetWindowLayoutTypeMethodAttempted = true;
}
if (sSetWindowLayoutTypeMethod != null) {
try {
sSetWindowLayoutTypeMethod.invoke(popupWindow, layoutType);
} catch (Exception e) {
// Reflection call failed. Oh well.
}
}
}
public int getWindowLayoutType(PopupWindow popupWindow) {
if (!sGetWindowLayoutTypeMethodAttempted) {
try {
sGetWindowLayoutTypeMethod = PopupWindow.class.getDeclaredMethod(
"getWindowLayoutType");
sGetWindowLayoutTypeMethod.setAccessible(true);
} catch (Exception e) {
// Reflection method fetch failed. Oh well.
}
sGetWindowLayoutTypeMethodAttempted = true;
}
if (sGetWindowLayoutTypeMethod != null) {
try {
return (Integer) sGetWindowLayoutTypeMethod.invoke(popupWindow);
} catch (Exception e) {
// Reflection call failed. Oh well.
}
}
return 0;
}
}
/**
* Interface implementation for devices with at least KitKat APIs.
*/
@RequiresApi(19)
static class PopupWindowCompatApi19Impl extends PopupWindowCompatBaseImpl {
@Override
public void showAsDropDown(PopupWindow popup, View anchor, int xoff, int yoff,
int gravity) {
popup.showAsDropDown(anchor, xoff, yoff, gravity);
}
}
@RequiresApi(21)
static class PopupWindowCompatApi21Impl extends PopupWindowCompatApi19Impl {
private static final String TAG = "PopupWindowCompatApi21";
private static Field sOverlapAnchorField;
static {
try {
sOverlapAnchorField = PopupWindow.class.getDeclaredField("mOverlapAnchor");
sOverlapAnchorField.setAccessible(true);
} catch (NoSuchFieldException e) {
Log.i(TAG, "Could not fetch mOverlapAnchor field from PopupWindow", e);
}
}
@Override
public void setOverlapAnchor(PopupWindow popupWindow, boolean overlapAnchor) {
if (sOverlapAnchorField != null) {
try {
sOverlapAnchorField.set(popupWindow, overlapAnchor);
} catch (IllegalAccessException e) {
Log.i(TAG, "Could not set overlap anchor field in PopupWindow", e);
}
}
}
@Override
public boolean getOverlapAnchor(PopupWindow popupWindow) {
if (sOverlapAnchorField != null) {
try {
return (Boolean) sOverlapAnchorField.get(popupWindow);
} catch (IllegalAccessException e) {
Log.i(TAG, "Could not get overlap anchor field in PopupWindow", e);
}
}
return false;
}
}
@RequiresApi(23)
static class PopupWindowCompatApi23Impl extends PopupWindowCompatApi21Impl {
@Override
public void setOverlapAnchor(PopupWindow popupWindow, boolean overlapAnchor) {
popupWindow.setOverlapAnchor(overlapAnchor);
}
@Override
public boolean getOverlapAnchor(PopupWindow popupWindow) {
return popupWindow.getOverlapAnchor();
}
@Override
public void setWindowLayoutType(PopupWindow popupWindow, int layoutType) {
popupWindow.setWindowLayoutType(layoutType);
}
@Override
public int getWindowLayoutType(PopupWindow popupWindow) {
return popupWindow.getWindowLayoutType();
}
}
/**
* Select the correct implementation to use for the current platform.
*/
static final PopupWindowCompatBaseImpl IMPL;
static {
if (Build.VERSION.SDK_INT >= 23) {
IMPL = new PopupWindowCompatApi23Impl();
} else if (Build.VERSION.SDK_INT >= 21) {
IMPL = new PopupWindowCompatApi21Impl();
} else if (Build.VERSION.SDK_INT >= 19) {
IMPL = new PopupWindowCompatApi19Impl();
} else {
IMPL = new PopupWindowCompatBaseImpl();
}
}
private PopupWindowCompat() {
// This class is not publicly instantiable.
}
/**
* <p>Display the content view in a popup window anchored to the bottom-left
* corner of the anchor view offset by the specified x and y coordinates.
* If there is not enough room on screen to show
* the popup in its entirety, this method tries to find a parent scroll
* view to scroll. If no parent scroll view can be scrolled, the bottom-left
* corner of the popup is pinned at the top left corner of the anchor view.</p>
* <p>If the view later scrolls to move <code>anchor</code> to a different
* location, the popup will be moved correspondingly.</p>
*
* @param popup the PopupWindow to show
* @param anchor the view on which to pin the popup window
* @param xoff A horizontal offset from the anchor in pixels
* @param yoff A vertical offset from the anchor in pixels
* @param gravity Alignment of the popup relative to the anchor
*/
public static void showAsDropDown(@NonNull PopupWindow popup, @NonNull View anchor,
int xoff, int yoff, int gravity) {
IMPL.showAsDropDown(popup, anchor, xoff, yoff, gravity);
}
/**
* Sets whether the popup window should overlap its anchor view when
* displayed as a drop-down.
*
* @param overlapAnchor Whether the popup should overlap its anchor.
*/
public static void setOverlapAnchor(@NonNull PopupWindow popupWindow, boolean overlapAnchor) {
IMPL.setOverlapAnchor(popupWindow, overlapAnchor);
}
/**
* Returns whether the popup window should overlap its anchor view when
* displayed as a drop-down.
*
* @return Whether the popup should overlap its anchor.
*/
public static boolean getOverlapAnchor(@NonNull PopupWindow popupWindow) {
return IMPL.getOverlapAnchor(popupWindow);
}
/**
* Set the layout type for this window. This value will be passed through to
* {@link android.view.WindowManager.LayoutParams#type} therefore the value should match any
* value {@link android.view.WindowManager.LayoutParams#type} accepts.
*
* @param layoutType Layout type for this window.
*
* @see android.view.WindowManager.LayoutParams#type
*/
public static void setWindowLayoutType(@NonNull PopupWindow popupWindow, int layoutType) {
IMPL.setWindowLayoutType(popupWindow, layoutType);
}
/**
* Returns the layout type for this window.
*
* @see #setWindowLayoutType(PopupWindow popupWindow, int)
*/
public static int getWindowLayoutType(@NonNull PopupWindow popupWindow) {
return IMPL.getWindowLayoutType(popupWindow);
}
}