gpt4 book ai didi

android - 使用 Translate Animation 将 View 从一种布局转换为另一种布局

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:16:23 24 4
gpt4 key购买 nike

我是 Android 动画的新手,我的要求是在单击该 View 时将 View 从一个布局转换为单个 xml 文件中的布局。

场景:假设我单击一个按钮,出现在 xml 文件中标题的顶部,它应该向下移动/平移(它应该产生影响,它位于其他布局上向下到标题),而且我希望当用户再次点击它,它现在应该移动到原来的位置。

这里我用我的xml文件来解释:

     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/app_bg"
android:orientation="vertical" >

<RelativeLayout
android:id="@+id/top"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/header"
android:paddingLeft="10dp"
android:paddingRight="10dp" >

<Button
android:id="@+id/btnSearchHeader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_centerInParent="true"
android:background="@drawable/search_icon" />


</RelativeLayout>

<RelativeLayout
android:id="@+id/bottom"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/app_transparent"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:layout_marginTop="10dp"
android:visibility="visible" >

<Button
android:id="@+id/btnMenu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginRight="5dp"
android:text="ABC" />

<Button
android:id="@+id/btnSearchSelected"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@+id/btnMenu"
android:text="CDE" />
</RelativeLayout>
</LinearLayout>

更精确的需求规范(请仔细阅读:)

这里我有两个子内部布局:-

顶部布局 - id-> top底部布局- id -> 底部

现在,一个 View (按钮 -> btnSearchHeader)位于我的顶部布局中,我想在单击时将其设置为底部布局的动画(它应该产生一种效果,即通过翻译动画将其翻译为底部布局)该按钮的按钮,当用户点击该按钮时,它应该再次通过转换动画转换回其原始位置.. 即它应该显示在顶部布局中

我不知道如何使用翻译动画来产生这些效果,但是我只有基本的翻译动画知识,这不足以满足我的要求。

任何类型的相关帮助都是值得赞赏的。

谢谢

最佳答案

您是否尝试过像下面这样的简单操作?

 final int topHeight = findViewById(R.id.top).getHeight();         
final int bottomHeight = findViewById(R.id.bottom).getHeight();
final View button = findViewById(R.id.btnSearchHeader);
final ObjectAnimator moveDownAnim = ObjectAnimator.ofFloat(button, "translationY", 0.F, topHeight + bottomHeight / 2 - button.getHeight() / 2);
final ObjectAnimator moveUpAnim = ObjectAnimator.ofFloat(button, "translationY", topHeight + bottomHeight / 2 - button.getHeight() / 2, 0.F);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (0.F == v.getTranslationY())
moveDownAnim.start();
else
moveUpAnim.start();
}
});

如果您确实需要按钮 View 更改父 View ,您可以使用 AnimatorListener 在每个动画结束时实现此目的。像这样的东西:

moveDownAnim.addListener(new Animator.AnimatorListener() { 
@Override
public void onAnimationEnd(Animator animation) {
((ViewGroup)findViewById(R.id.top)).removeView(button);
((ViewGroup)findViewById(R.id.bottom)).addView(button);
((RelativeLayout)button.getLayoutParams()).addRule(RelativeLayout.CENTER_IN_PARENT);
button.setTranslationY(0.F); // Since it is now positioned in the new layout, no need for translation.
}
@Override
public void onAnimationCancel(Animator animation) { /* NOP */ }
@Override
public void onAnimationRepeat(Animator animation) { /* NOP */ }
@Override
public void onAnimationStart(Animator animation) { /* NOP */ }
});

(以及 moveUpAnim 的类似监听器。)

但是,我怀疑您是否真的需要这样做才能达到您想要的视觉效果。但是如果您执行此部分操作,您可能还需要为您的top View 设置固定高度,而不是wrap_content。 (否则,如果在按钮已移动到底部 View 时发生布局传递,如果其中没有其他内容,则顶部布局的高度可能会变为 0。)最简单的方法是直接在 xml 布局文件中执行此操作。但是,如果您想“即时执行”,您可以在 onAnimationEnd() 方法中更改布局的高度,方法如下:

@Override                                          
public void onAnimationEnd(Animator animation) {
final ViewGroup topLayout = findViewById(R.id.top);
topLayout.getLayoutParams().height = topLayout.getHeight(); // Keep it the same height...
topLayout.removeView(button);
((ViewGroup)findViewById(R.id.bottom)).addView(button);
((RelativeLayout)button.getLayoutParams()).addRule(RelativeLayout.CENTER_IN_PARENT);
button.setTranslationY(0.F); // Since it is now positioned in the new layout, no need for translation.
}

关于android - 使用 Translate Animation 将 View 从一种布局转换为另一种布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22242595/

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