我正在尝试在屏幕上移动以编程方式添加的 ImageView。这样做
我正在通过 getIdentifier 搜索它的 id。这应该工作吗?代码如下:
int id = this.getResources().getIdentifier("lemon1", "drawable", this.getPackageName());
ImageView image = (ImageView)findViewById(id);
RelativeLayout.LayoutParams pos = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
pos.setMargins(0, 100, 0, 0);
image.setLayoutParams(pos);
我应该如何继续实现我打算做的事情?