gpt4 book ai didi

Android动画 View 从右到左

转载 作者:搜寻专家 更新时间:2023-11-01 08:35:46 25 4
gpt4 key购买 nike

我做了一个小应用程序,我是 android 动画/过渡的新手。

我想要什么:如果你按下一个按钮,背景( View )应该滑出,另一个应该进来,但我不想开始其他 Activity ,我只想改变现有的背景。

这正是我想要的:https://www.polymer-project.org/0.5/components/core-animated-pages/demos/simple.html(一定要在左上角的方框里换个方框才能看到)

我在其他帖子中读到了一些关于它的内容,但通常有启动另一项 Activity 的解决方案..

如果您理解我的意思,最好给我提示或教程链接或其他内容。

编辑 - 解决方案

我让它为我工作,我构建了一个完全符合我想做的代码,我给出了所有答案 1 并标记了最后一个,因为它接近我所做的。感谢大家。

这个链接非常有用: https://github.com/codepath/android_guides/wiki/Animations (迄今为止我找到的最好的动画教程)

Slide right to left Android Animations (从右到左,从上到下,...的 xmls)

向左过渡的例子:

代码:

public void transitionleft(final View viewcome, final View viewgo){
animcome = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_right_in);
animgo = AnimationUtils.loadAnimation(getApplicationContext(), R.anim.slide_left_out);
animgo.setDuration(1000);
animcome.setDuration(1000);

animcome.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
viewcome.setVisibility(View.VISIBLE);
}

@Override
public void onAnimationEnd(Animation animation) {

}

@Override
public void onAnimationRepeat(Animation animation) {

}
});

animgo.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {

}

@Override
public void onAnimationEnd(Animation animation) {
viewgo.setVisibility(View.INVISIBLE);
}

@Override
public void onAnimationRepeat(Animation animation) {

}
});
viewcome.startAnimation(animcome);
viewgo.startAnimation(animgo);
}

res/anim/slide_right_in 中的 XML 转换

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false" >
<translate android:duration="5000" android:fromXDelta="100%" android:toXDelta="0%" />
<alpha android:duration="5000" android:fromAlpha="1.0" android:toAlpha="1.0" />
</set>

资源/动画/slide_left_out

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false" >
<translate android:duration="5000" android:fromXDelta="0%" android:toXDelta="-100%"/>
<alpha android:duration="5000" android:fromAlpha="1.0" android:toAlpha="1.0" />
</set>

工作原理:我有 2 个 View ,它们都具有屏幕尺寸 (match_parent)。一个可见,另一个不可见。然后你将可见的函数作为 viewgo (因为这应该消失)和不可见的作为 viewcome (因为这应该是新来的人)在动画开始时,viewcome 将设置为可见,因为它是“滑入”的。动画完成后,viewgo 将不可见,因为它“滑出”了。这非常简单,而且效果很好。

要改进动画,您可以使用 AnimatorSet 来同步两个动画 (set.playtogether()),但如果没有它,它对我来说也很好。

最佳答案

这是一个完整的解决方案:

在 jour xml 文件中,在同一位置设置两个 View ,并将第二个 View 的可见性设置为 invisible :

    <RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:id="@+id/currentView"
android:text="currentView"/>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="invisible"
android:id="@+id/nextView"
android:text="nextView"/>

</RelativeLayout>

然后在你的 Activity 中:

//First in you onCreate translate the second Layout to the right
comingView.setTranslationX(testbutton.getWidth());

// Here is the method that will do the job
// We slide both views (current one and waiting one) at the same time
// and in the same direction

private void slideExit(View currentView,final View comingView) {
currentView.animate().
translationXBy(-currentView.getWidth()).
setDuration(1000).
setInterpolator(new LinearInterpolator()).
setListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationStart(Animator animation) {
super.onAnimationStart(animation);
slideFromRightToLeft(comingView);
comingView.setVisibility(View.VISIBLE);
}
});
}

private void slideFromRightToLeft(View v) {
v.animate().
translationX(0).
setDuration(1000).
setInterpolator(new LinearInterpolator());
}

//call the method whenever you want
slideExit(currentView, comingView);

关于Android动画 View 从右到左,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36809994/

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