我想做一个画板,现在需要增加一个插入图片的功能。目前我自定义了一个View来实现画线等功能,然后在MainActivity里创建了它,所以我不知道该怎么添加imageview来放置图片了,或者还有别的方法能实现?
2 回答
茅侃侃
TA贡献1842条经验 获得超21个赞
``` LinearLayout ll= (LinearLayout) this.findViewById(R.id.actClient_LinearLayout);
ll.removeView(img_preview);
img_preview=new ImageView(this);
img_preview.setBackgroundResource(R.drawable.girl);
ll.addView(img_preview);
添加回答
举报
0/150
提交
取消