textview背景图片

来源:互联网 发布:js防水是什么 编辑:程序博客网 时间:2024/06/11 04:41

为textview设置背景图片问题:

我用的图片是drawable下面自定义的xml

TextView tv=(TextView)arg1.findViewById(R.id.flowerpot);

   tv.setBackgroundResource(R.drawable.flower_blue);

这是在gridview的ontemclicklistenr中做的。

0 0