How to set image for custom image view in android
Hi friends can anybody tell how to set image for custom image view dynamically in android can anybody give 开发者_C百科example
Thanks
If your custom image view extends the normal image view the setting should be exactly the same.
if you, like WarrenFaith said extend the normal image view, here's the code:
customImageView.setImageBitmap(mIcon1);
精彩评论