我有这个代码:
translateRight("iv1"); //iv1 is an id of an imageView private void translateRight(String st){ ImageView img = (ImageView)findViewById(R.id.st); Animation a = AnimationUtils.loadAnimation(this,R.anim.translate_right); img.startAnimation(a); }
我有“translateRight”这是一个显示动画的方法,但在这种方法中我应该传递一个资源ID;我尝试了一个字符串,但它不起作用,我该怎么办?
解决方法
资源ID – 是一个整数值.只需传递一个int:
private void translateRight(int resource){ ImageView img = (ImageView) findViewById(resource); //stuff }