1

我想在按钮中的文本上添加图像。如果我将图像添加为按钮的背景,它将被添加到文本下方。预期结果被添加为图像。请帮忙

图片下方的文字

更新: 我需要以编程方式执行此操作。

4

1 回答 1

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);
于 2013-05-11T11:09:51.863 回答