android 从左向右平移_如何在Android中从左向右移动图像

这篇博客介绍了如何在Android环境中使用Animation类的TranslateAnimation子类,实现图片从左到右的平移动画。通过创建一个新的LinearLayout,设置布局参数,然后创建TextView、TranslateAnimation和Button,并监听Button点击事件来启动动画,从而实现这一效果。
摘要由CSDN通过智能技术生成

I'd like to translate an image from left to right on emulator using android animation. I'm new to android animation. How could I do that?

Thanks.

解决方案ll = new LinearLayout(this);

ll.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));

ll.setOrientation(LinearLayout.VERTICAL);

tv = new TextView(this);

tv.setText("Animation");

moveLefttoRight = new TranslateAnimation(0, 200, 0, 0);

moveLefttoRight.setDuration(1000);

moveLefttoRight.setFillAfter(true);

button = new Button(this);

button.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

button.setText("PressMe");

button.setOnClickListener(new OnClickListener() {

public void onClick(View v) {

tv.startAnimation(moveLefttoRight);

}

});

ll.addView(tv);

ll.addView(button);

setContentView(ll);

is one way of doing it.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值