gpt4 book ai didi

Android slider 按钮小部件

转载 作者:行者123 更新时间:2023-11-29 02:02:08 25 4
gpt4 key购买 nike

我是Android开发新手。我想实现一个带动画的滑动按钮。效果如下视频所示:http://www.youtube.com/watch?v=ImHe4N4mvE4 .这就像iphone 的“滑动解锁”效果。我的问题是如何插入这种效果。这个应用是用 changeview, scrollview 实现的吗?

最佳答案

您可以将带有动画的 ImageView 置于线性布局中,其高度为包装内容,宽度为填充父元素

动画代码

    public static Animation inFromLeftAnimation() {
Animation inFromLeft = new TranslateAnimation(
Animation.RELATIVE_TO_PARENT, -1.0f, Animation.RELATIVE_TO_PARENT, 0.0f,
Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_PARENT, 0.0f
);
inFromLeft.setDuration(350);
inFromLeft.setInterpolator(new AccelerateInterpolator());
return inFromLeft;
}
public static Animation outToLeftAnimation() {
Animation outtoLeft = new TranslateAnimation(
Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_PARENT, -1.0f,
Animation.RELATIVE_TO_PARENT, 0.0f, Animation.RELATIVE_TO_PARENT, 0.0f
);
outtoLeft.setDuration(350);
outtoLeft.setInterpolator(new AccelerateInterpolator());
return outtoLeft;
}

关于Android slider 按钮小部件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12088362/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com