android线条波动动画,Android动画在移动过程中会留下线条

我使用AbsoluteLayout在3×4网格中设置了12个ImageButton.当用户单击图像按钮时,它会增长以填充屏幕,保持,然后缩小到其原始位置.

除了当按钮缩小时它有时会留下线条,动画才有效. (我附上了图片).

有没有更好的方法来实现这个动画?我该怎么做才能防止我得到的绘图错误?

编辑:

收缩动画完成后,线条也会消失,它们仅在动画期间出现.

这是我的UDATED动画代码

private void animateCard(final CardButton c){

this.isAnimating = true;

CardPickerActivity.this.soundManager.playSound(c.name);

Util.logD("Card:" + c.name + " clicked!");

final int growDuration = 750;

final int holdDuration = 500;

final int shrinkDuration = 500;

c.bringToFront();

AnimationSet asGrow = new AnimationSet(true);

float newScale = 2.0f;

float newX = (CardPickerActivity.this.wDesk/2.0f - CardPickerActivity.this.cardSize/2.0f*newScale - c.getLeft())/newScale;

float newY = (CardPickerActivity.this.hDesk/2.0f - CardPickerActivity.this.cardSize/2.0f*newScale - c.getTop() )/newScale;

TranslateAnimation taG = new TranslateAnimation(0.0f, newX , 0.0f, newY);

ScaleAnimation saG = new ScaleAnimation( 1.0f, newScale, 1.0f, newScale);

taG.setRepeatCount(1);

saG.setRepeatCount(1);

taG.setRepeatMode(Animation.REVERSE);

saG.setRepeatMode(Animation.REVERSE);

asGrow.addAnimation(taG);

asGrow.addAnimation(saG);

asGrow.setDuration(growDuration);

c.startAnimation(asGrow);

}

这是活动的XML布局,忽略layout_x和layout_y我稍后根据设备的屏幕设置它们:

android:id="@+id/cardLayout" android:layout_width="fill_parent"

android:layout_height="fill_parent">

android:id="@+id/btn1" android:text="1" android:layout_x="0px"

android:layout_y="0px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn2" android:text="2" android:layout_x="10px"

android:layout_y="10px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn3" android:text="3" android:layout_x="20px"

android:layout_y="20px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn4" android:text="4" android:layout_x="30px"

android:layout_y="30px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn5" android:text="5" android:layout_x="40px"

android:layout_y="40px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn6" android:text="6" android:layout_x="40px"

android:layout_y="40px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn7" android:text="7" android:layout_x="40px"

android:layout_y="40px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn8" android:text="8" android:layout_x="40px"

android:layout_y="40px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn9" android:text="9" android:layout_x="40px"

android:layout_y="40px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn10" android:text="10" android:layout_x="40px"

android:layout_y="40px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn11" android:text="11" android:layout_x="40px"

android:layout_y="40px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

android:id="@+id/btn12" android:text="12" android:layout_x="40px"

android:layout_y="40px" android:layout_width="wrap_content"

android:layout_height="wrap_content" />

这是CardButton类,它本质上是一个带有更多成员变量的ImageButton

public class CardButton extends ImageButton {

public CardButton(Context context, AttributeSet attrs, int defStyle) {

super(context, attrs, defStyle);

}

public CardButton(Context context, AttributeSet attrs) {

super(context, attrs);

}

public CardButton(Context context) {

super(context);

}

public String name;

public Bitmap image;

public int soundRes;

public int imageRes;

public String customImagePath;

public String customSoundPath;

}

解决方法:

所以我解决了这个问题,但不是我满意的方式.

首先在我的代码中的一个地方,我没有显示我打电话:

cardButton.setBackgroundColor(Color.WHITE);

如果我注释掉这一行,问题就会消失.然而,这产生了看起来像股票Android按钮的CardButtons.这不是我想要它们的样子,所以我尝试了其他一些方式设置白色按钮“style”.所有这些都产生了这个bug.

为了更好地了解正在发生的事情并在Android或我的代码中查找可能的错误,我创建了一个测试项目,其中只包含一个带有3×4网格的活动而没有其他任何内容.此测试项目包含单个活动和单个XML文件.从基本网格开始,我无法重现该错误,然后我开始向测试应用添加越来越多的功能,并最终重新创建了原始活动但没有错误.

我想也许我的新实现比原来更好,所以我将新的测试活动纳入我的原始项目.但是,当我从原始项目运行测试活动时,错误再次出现.

我现在有两个活动在不同的Android项目中使用相同的代码.一个是项目中唯一的活动,另一个是具有许多活动的大型项目的一部分.较大项目中的版本显示错误,而独立项目中的版本则没有.我不确定如何解释这一点,我非常感谢对此提出任何反馈/意见.

所以,直到我能弄清楚为什么我在我更大的应用程序的上下文中得到绘图错误我将使用股票android按钮背景.

更新:一时兴起,我制作了一个白色的9Patch背景.这解决了这个问题.

标签:android,animation

来源: https://codeday.me/bug/20190626/1294242.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值