gpt4 book ai didi

android - 如何在android中为布局设置动画?

转载 作者:太空狗 更新时间:2023-10-29 15:31:50 25 4
gpt4 key购买 nike

在我的 Activity 屏幕中,一半的屏幕包含一个布局。当 Activity 加载它时可见,10 秒后它会慢慢下降,最终用户将看不到它。但它下降缓慢。我该怎么做it.Please 任何人都可以帮助我。

提前致谢。

最佳答案

在您的 res\anim 文件夹中(如果不存在则创建该文件夹)创建 slide_out_down.xml 并粘贴以下内容

<?xml version="1.0" encoding="utf-8"?>
<translate
xmlns:android="http://schemas.android.com/apk/res/android"

android:fromYDelta="0%p"
android:toYDelta="100%p"
android:duration="@android:integer/config_longAnimTime" />

启动动画并隐藏 View 使用这个

 private void hideView(final View view){
Animation animation = AnimationUtils.loadAnimation(this, R.anim.slide_out_down);
//use this to make it longer: animation.setDuration(1000);
animation.setAnimationListener(new AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {}

@Override
public void onAnimationRepeat(Animation animation) {}

@Override
public void onAnimationEnd(Animation animation) {
view.setVisibility(View.GONE);
}
});

view.startAnimation(animation);
}

关于android - 如何在android中为布局设置动画?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17340851/

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