单个视图中的Android图像和文本

时间:2011-07-07 15:54:32

标签: android

我想在单个视图中显示文字,图片。 请帮助我  我想从我的班级给src图像而不是xml亲切的帮助 谢谢

3 个答案:

答案 0 :(得分:1)

您可以将Button用于此

Button b=new Button(this);
b.setText(" Button");     
b.setCompoundDrawablesWithIntrinsicBounds(null, getResources().getDrawable(R.drawable.btn_call), null, null);

答案 1 :(得分:0)

在这里查看TextView是link

寻找android:drawableLeft,android:drawableRight,android:drawbleTop,android:drawbleBottom

从类中设置drawable ...在这里查找setCompoundDrawablesWithIntrinsicBounds是link

希望得到这个帮助。

答案 2 :(得分:0)

您应该尝试使用包含drawableLeft / drawableRight / drawableTop / drawableBotton属性的普通按钮。

请在此处查看示例:How to create button with image & text