'###Header Of ScrollView
Dim h_iv As ImageView
h_iv.Initialize("")
Dim h_bd As BitmapDrawable
h_bd.Initialize(LoadBitmap(File.DirAssets, "allnotesheader.png"))
h_iv.Background = h_bd
scrl_allNotes.Panel.AddView(h_iv, 0, 0, 480, 120)
For i = 0 To Bitmaps.Size - 1 '###size of bitmap is more than 50
'###Repeating Elements That Will Be Used As Backgrounds
Dim s_iv As ImageView
s_iv.Initialize("")
Dim s_bd As BitmapDrawable
s_bd.Initialize(LoadBitmap(File.DirAssets, "notelistsatir.png"))
s_iv.Background = s_bd
'###Rows Of Bitmap Files That Will Be Used As Foreground Layer
Dim iv As ImageView
iv.Initialize("")
Dim bd As BitmapDrawable
bd.Initialize(Bitmaps.Get(i))
iv.Background = bd
scrl_allNotes.Panel.AddView(s_iv, 0, 120 + i * 40, 480, 40) '###Background Layer
scrl_allNotes.Panel.AddView(iv, 30, 120 + i * 40, 480, 40) '###Foreground Layer
Next