Android Question App Lag

Douglas Farias

Expert
Licensed User
Longtime User
hi i make this in my app
to set images in my imageviews

but now is much much lag on my app i dont know why
have a error in my codE?
this code works fine

all 8 images view with images but many many lag in my app

why this?

can is because images sizes?
for exemple
1.jpg have 1mb 2.jpg have 3mb etc or its no is my problem?
B4X:
    Sub checagemdearquivo
    If File.Exists(FP,"1.jpg") = True Then
    ImageView1.Bitmap = LoadBitmap(FP, "1.jpg")
    Else
    'nada
    End If
  
    If File.Exists(FP,"2.jpg") = True Then
    ImageView2.Bitmap = LoadBitmap(FP, "2.jpg")
    Else
    'nada
    End If
  
    If File.Exists(FP,"3.jpg") = True Then
    ImageView3.Bitmap = LoadBitmap(FP, "3.jpg")
    Else
    'nada
    End If
  
    If File.Exists(FP,"4.jpg") = True Then
    ImageView4.Bitmap = LoadBitmap(FP, "4.jpg")
    Else
    'nada
    End If
  
    If File.Exists(FP,"5.jpg") = True Then
    ImageView5.Bitmap = LoadBitmap(FP, "5.jpg")
    Else
    'nada
    End If
  
    If File.Exists(FP,"6.jpg") = True Then
    ImageView6.Bitmap = LoadBitmap(FP, "6.jpg")
    Else
    'nada
    End If
  
    If File.Exists(FP,"7.jpg") = True Then
    ImageView7.Bitmap = LoadBitmap(FP, "7.jpg")
    Else
    'nada
    End If
  
    If File.Exists(FP,"8.jpg") = True Then
    ImageView8.Bitmap = LoadBitmap(FP, "8.jpg")
    Else
    'nada
    End If
  
    'Try
    'File.Copy(File.DirAssets, "config.ini",FP, "config.ini")
    'Catch
'    Msgbox("error", "error")
    'End Try
    End Sub
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…