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

Android动画在移动过程中会留下线条,第1张

概述我使用AbsoluteLayout在3×4网格中设置了12个 ImageButton.当用户单击图像按钮时,它会增长以填充屏幕,保持,然后缩小到其原始位置. 除了当按钮缩小时它有时会留下线条,动画才有效. (我附上了图片). 有没有更好的方法来实现这个动画?我该怎么做才能防止我得到的绘图错误? 编辑: 收缩动画完成后,线条也会消失,它们仅在动画期间出现. 这是我的UDATED动画代码 privat 我使用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我稍后根据设备的屏幕设置它们:

<?xml version="1.0" enCoding="utf-8"?><absoluteLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:ID="@+ID/cardlayout" androID:layout_wIDth="fill_parent"    androID:layout_height="fill_parent">    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" />    <com.myProject.Cardbutton        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" /></absoluteLayout>

这是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动画在移动过程中会留下线条全部内容,希望文章能够帮你解决Android动画在移动过程中会留下线条所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1128419.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存