gpt4 book ai didi

android - View.GONE 在翻译动画后不起作用

转载 作者:行者123 更新时间:2023-11-29 01:43:59 26 4
gpt4 key购买 nike

所以我有一个应用程序,当用户点击 button 时,将为带按钮的 layout 执行 animation(例如 滑动菜单),然后如果他点击另一个按钮,它必须使第一个布局不可见或消失,然后是新布局。

但是,当我尝试在 AnimationStart 上制作带有不可见按钮的 layout 时,它不会那样做。

我已经从这里尝试了一些解决方案:

Why doesn't setvisibility work after a view is animated

Setvisibilityview Gone doesn't disappear a view

但没有任何效果!

有什么帮助吗??

Java代码(两个按钮相同)

 btn_home1.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View v) {

layout1.setVisibility(View.VISIBLE);
btn_home.setVisibility(View.VISIBLE);
btn_book.setVisibility(View.VISIBLE);
btn_find_us.setVisibility(View.VISIBLE);
btn_menu.setVisibility(View.VISIBLE);

TranslateAnimation slide = new TranslateAnimation(-100, 0, 0,0 );
slide.setDuration(1000);
slide.setFillAfter(true);
slide.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
btn_home2.setVisibility(View.GONE);
btn_book2.setVisibility(View.GONE);
btn_find_us2.setVisibility(View.GONE);
btn_menu2.setVisibility(View.GONE);
layout2.setVisibility(View.GONE);
}
}, 0);
btn_home.setClickable(false);
btn_book.setClickable(false);
btn_find_us.setClickable(false);
btn_menu.setClickable(false);
}

@Override
public void onAnimationEnd(Animation animation) {
btn_home.setClickable(true);
btn_book.setClickable(true);
btn_find_us.setClickable(true);
btn_menu.setClickable(true);
}

@Override
public void onAnimationRepeat(Animation animation) {

}
});
btn_menu.startAnimation(slide);
btn_book.startAnimation(slide);
btn_find_us.startAnimation(slide);
btn_home.startAnimation(slide);
layout1.startAnimation(slide);
}
});

XML代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="#BE2625" >
<Button
android:id="@+id/btn_home1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="150dp"
android:text="342"
/>

<Button
android:id="@+id/btn_home11"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="250dp"
android:text="34243"
/>

<LinearLayout
android:id="@+id/lala"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#80000000"
android:visibility="gone"
android:orientation="vertical">

<Button
android:id="@+id/btn_home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_book"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_find_us"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>

</LinearLayout>

<LinearLayout
android:id="@+id/lala1"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#80000000"
android:visibility="gone"
android:orientation="vertical">

<Button
android:id="@+id/btn_home2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_book2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_find_us2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>
<Button
android:id="@+id/btn_menu2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.25"
/>

</LinearLayout>
</RelativeLayout>

最佳答案

调用 View 的 clearAnimation 解决了这个问题。在我的例子中,我想在将 fillAfter 设置为 true 后将 View 设置回其原始位置。

关于android - View.GONE 在翻译动画后不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22615558/

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