java 将imageView添加到relativeLayout

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 将imageView添加到relativeLayout相关的知识,希望对你有一定的参考价值。

RelativeLayout rl = findViewById(R.id.spenViewLayout);

ImageView duplicate = new ImageView(getApplicationContext());
duplicate.setImageDrawable(getDrawable(R.drawable.love));
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(300, 300);
params.addRule(RelativeLayout.CENTER_IN_PARENT, RelativeLayout.TRUE);
rl.addView(duplicate, params);

以上是关于java 将imageView添加到relativeLayout的主要内容,如果未能解决你的问题,请参考以下文章

如何将imageView添加到collectionViewCell中的scrollView

如何将具有突出显示颜色背景的文本添加到 ImageView

使用自动布局时何时将 imageView 添加到 UIButton

将 tapGesture 添加到禁用 userInteraction 的 imageView 上的标签

如何在确保 UIView 的内容在其框架内的同时将 UIview 添加到 imageView?

如何以编程方式将约束添加到 UITableViewCell 的默认 imageView 和 textLabel