我想在单个视图中显示文字,图片。 请帮助我 我想从我的班级给src图像而不是xml亲切的帮助 谢谢
答案 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属性的普通按钮。