我想在按钮的文本上添加图像。如果我将图像添加为按钮的背景,则会将其添加到文本下方。预期结果将添加为图像。请帮忙
更新 我需要以编程方式执行此操作。
答案 0 :(得分:1)
在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);