交叉(错误符号)图像下的android按钮文本

时间:2013-05-08 11:55:01

标签: android image button text

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

Text below the image

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

1 个答案:

答案 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);