Hi. I have a scrollview that I add many edittexts to within a loop and I'm adding a background for each like so...
et.SetBackgroundImage(LoadBitmap(File.DirAssets,"etbackground.jpg"))
Is this the 'normal' way to do it? Seems odd to be loading the bitmap each time. I thought of doing it before the loop, but the edittext is initialized each time at the start of the loop in order to clear what was there before. I also don't understand the difference between .Background and .SetBackgroundImage. Thanks.