如何在android中移动图像并创建动画?

时间:2012-12-09 10:03:28

标签: android-animation

我刚刚开始在Android中编程,但我在java(OOP)中编程,所以我需要帮助 - 我的xml文件中有一个ImageButton,我有一个java项目,它应该让xml文件做的东西,对吧? 那么如何通过运行函数使xml文件中的ImageButton移动?与threds?使用paintComponent?

我试着做那样的事情 -

public class example1 extends Activity{
    ImageButton i=(ImageButton)findViewById(R.id.i1);
    int bottom=i.getBottom();
    int left=i.getLeft();
    int right=i.getRight();
    int top=i.getTop();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
    }

    public void run(){
        RelativeLayout.LayoutParams layoutParams = (RelativeLayout.LayoutParams) i.getLayoutParams();
        layoutParams.setMargins(left, top, right, bottom+1);
        i.setLayoutParams(layoutParams);
    }

但我不知道如何让它按时间移动。

0 个答案:

没有答案