将imageview添加到特定坐标上的布局

时间:2012-04-18 13:31:55

标签: java android layout

我正在动态地将ImageView添加到布局中。这是代码,它正在做我想要的:

    setContentView(R.layout.main);
    RelativeLayout main = (RelativeLayout) findViewById(R.id.main_view);
    ImageView smokeImage = new ImageView(this);
    Drawable smoke = getResources().getDrawable(R.drawable.smoke);
    smokeImage.setBackgroundDrawable(smoke);
    main.addView(smokeImage, 800, 800);

如何将ImageView添加到特定坐标?例如。我希望它出现在x = 25px和y = 43px上。有什么特别的功能吗?

1 个答案:

答案 0 :(得分:0)

最简单的方法是为图像视图设置边距。您可以使用创建RelativeLayout.LayoutParams,将边距设置为参数

params.setMargins(left, top, right, bottom);

并将params设置为图像视图

smokeImage.setLayoutParams(params);