我正在将图像动态添加到这样的相对布局中:
RelativeLayout relUsers= (RelativeLayout) findViewById(R.id.RelativeLayoutUsers);
lpIm = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT);
lpIm.leftMargin = x;
lpIm.topMargin = y;
ImageView imageView = new ImageView(this);
imageView.setImageResource(R.drawable.dot_red);
relUsers.addView(imageView, lpIm);
但我需要在图像下方有一些文本视图,以便我可以更改。我是否需要创建扩展班轮布局(或相对)的自定义类?如何创建自定义类或视图?