我已经使用setZ()函数成功实现了拖动动画,如下所示:

dragAnimSet.setAnimationListener(new Animation.AnimationListener() {
    @Override
    public void onAnimationStart(Animation animation) {
        ((ViewGroup)sourceParent.getParent()).setClipChildren(false);
        for(int a = 0; a < ifvList.size(); a++)
        {
            if(a != sourceIndex && a != indexInListener)
            {
                ifvList.get(a).setZ(-20);
            }
        }
        if(sourceParent.indexOfChild(toReplace) != -1 && toReplaceParent.indexOfChild(source) != -1) {
            source.setZ(-10);
        } else {
            sourceParent.setZ(-10);
        }
    }

    @Override
    public void onAnimationEnd(Animation animation) {
        ((ViewGroup)sourceParent.getParent()).setClipChildren(true);
        for(int a = 0; a < ifvList.size(); a++)
            {
                if(a != sourceIndex && a != indexInListener)
                {
                    ifvList.get(a).setZ(0);
                }
            }
            source.setZ(0);
            sourceParent.setZ(0);
        }

    @Override
    public void onAnimationRepeat(Animation animation) {}
});

但是,我在最低API为15的设备中使用的应用程序,且函数setZ()仅适用于API 21及更高版本。
bringToFront()或更改绘制顺序将不起作用,因为它是LinearLayout,而前者只会将 View 移到列表的末尾。

如何至少模拟apit 21以下设备的setZ()的效果?

最佳答案

棒棒糖之前没有高程,因此没有setZ():绘制顺序始终按添加 View 的顺序进行。

ViewCompat.setZ(),但显然在Lollipop之前它没有做任何事情,只是允许您删除所有版本检查。

关于android - 如何为API 21/Lollipop以下的设备实现setZ()?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38319581/

10-11 17:16