我想在按钮中的文本上添加图像。如果我将图像添加为按钮的背景,它将被添加到文本下方。预期结果被添加为图像。请帮忙
更新: 我需要以编程方式执行此操作。
在 XML 中,
<RelativeLayout android:id="@+id/container">*
<TextView ...></TextView> <!-- Your A text -->
</RelativeLayout>
在代码中,
RelativeLayout container = (Rel...) findViewById(R.id.container);
ImageView imgView = new ImageView(this);
// Set Image View params and image and add it programmatically
container.addView(imgView);