B4A Library [Library] B4aGallery v3.55

B4AGalleryView
Author:
Giuseppe Salvi
Version: 3.55


A thanks is always appreciated.
 

Attachments

  • B4AGallery.zip
    45.9 KB · Views: 930
  • B4AGallery v2.51.zip
    133.8 KB · Views: 642
  • gallery.jpg
    gallery.jpg
    94.2 KB · Views: 1,873
  • B4AGalleryView 2.53.zip
    20.5 KB · Views: 559
  • B4AGallery lib v2.80.zip
    26.8 KB · Views: 351
  • B4AGallery v2.90.zip
    238 KB · Views: 343
  • B4AGallery v3.0.zip
    57.3 KB · Views: 363
  • B4AGallery v3.10.zip
    134.3 KB · Views: 901
  • B4AGalleryView v3.55 Lib Fix.zip
    186.7 KB · Views: 918
Last edited:

Mrjoey

Active Member
Licensed User
Longtime User
hey , i know that u are downsampling the bitmaps to save some memory , but they are really bad quality when it comes to tablet , is there a way to control the quality , and remain the memory happy? thank u :)
 

ronovar

Active Member
Licensed User
Longtime User
Hi.

Is there a way of setting custom text below image? For example i have json data that reads images from my server so i would like to set below image my custom text that is read from my server mysql base using json data.

And if you can post the code to position text below image for example -20dip%y from image bottom.

Thanks.
 

Mrjoey

Active Member
Licensed User
Longtime User
Hi Mrjoey, in to the gallery it display just the thumb saved in a cache with the size U give but when u wont to show the entire pict it take the original, so it quality depend from the original pic.
how to give a size to the cache , i created a cache using b4agallery.createcache = "some folder" , but nothing changed , the quality remained low , i did not understand completely ur point.
 

ronovar

Active Member
Licensed User
Longtime User
Hi, lonleystar...i have successfully implement your excellent coverflow(tested on 4000pictures) and is working flawlessly...without any performance loss..all si working birlliant. So for my apk that i im currently developing can you please add to this b4a gallery covers feauture that have for example 5 images in row with text below image, that we have covers on screen and when user get to last cover it scrolls down...here i sthe picture what i mean.

I have tried with Horizontal ScrollView but it is performance sloowly...and after scroling around 100pcitures i im getting in B4A logcat this message:
Downsampling image due to lack of memory.

I have S2HD16 dual core android box with 1gb ram but your excellent library works withut problem.

If you can add this feauture that we have covers grid and when user get to the image with up down left right image is highlighted.

Thanks.
 

Attachments

  • IMAG0083.jpg
    IMAG0083.jpg
    476 KB · Views: 195

ronovar

Active Member
Licensed User
Longtime User
Yes, gridview but with highlight item when user press on remote left/right/up/down and scrolling down to next items when user get to last bottom item(for example gridview have 15 items and when user select 15item and press down or right it scrolles to next 15items).

Can You Please Add this feauture to excellent B4AGallery?

Thanks.
 

ronovar

Active Member
Licensed User
Longtime User
ok...this will be excellent plugin...so if you can addimagefromurl and when last item is selected then scroll down. And if is possible to put text below every image (i im builidng home movei collection so i would like to have below cover of movie movie name etc. label below bitmapfrom url).

Many Thanks.
 

Ratna Fang

Member
Licensed User
Longtime User
Hi ronovar, it work fine but anyway try with this code below.

B4X:
Sub Globals
    Dim Gallery As PhotoGallery
End Sub

Sub Activity_Create(FirstTime As Boolean)

    Gallery.Initialize("Gallery")

    Activity.AddView(Gallery, 0, 0, 100%x, 100%y)

    Gallery.CreateCache = "Pippo.Pluto.Paperino"

    Gallery.TextSize = 16
    Gallery.TextColor = Colors.Yellow
    Gallery.ShowText = False
    Gallery.ItemWidth = 436

    Gallery.ItemHeight = 336
    Gallery.Spacing = 50

    '*************************************

    Gallery.ScaleType = Gallery.ScaleType.Fit_XY
    Gallery.SetNoEffect = False
    Gallery.SetBorderColor=Colors.Yellow
    Gallery.SetCornerRadius = 10
    Gallery.SetBorderWidth = 2
    Gallery.SetOval = False

    '************************************

    Gallery.AddImageFromWebAt(0,"http://zdravilkaduha.files.wordpress.com/2011/01/veverica-za-lep-dan.jpg")
End Sub



View attachment 25329

hi lonlelystar,

i tried to implement the example like this:
B4X:
Sub Globals
    'These global variables will be redeclared each time the activity is created.
    'These variables can only be accessed from this module.
    Dim Gallery As PhotoGallery
    Dim fromWeb() As String, posSelected As Int
   
   
    Dim gTrack As AnalyticsTracker
End Sub

Sub Activity_Create(FirstTime As Boolean)
    'Do not forget to load the layout file created with the visual designer. For example:
    'Activity.LoadLayout("Layout1")
   
   
    'setup gallery
    Gallery.Initialize("Gallery")
    Activity.AddView(Gallery, 0, Main.PhHeight, 100%x, 90%y-Main.PhHeight)
    'Gallery.ClearCache 'dibersihkan dulu memory
    Gallery.CreateCache="Cacche New"
   
    Gallery.TextSize = 16
    Gallery.TextColor = Colors.Yellow
    Gallery.ShowText = False
    Gallery.ItemWidth = 300
    Gallery.ItemHeight = 200
    Gallery.Spacing = 50
   
    '*************************************
   
    Gallery.ScaleType = Gallery.ScaleType.Center_Crop
    Gallery.SetNoEffect = False
    Gallery.SetBorderColor=Colors.Yellow
    Gallery.SetCornerRadius = 10
    Gallery.SetBorderWidth = 2
    Gallery.SetOval = False
   
    'loop buat bikin array
    Dim Kepala As String
    Log(Main.Halaman)
   
    For i=1 To Main.Halaman
        If i<10 Then Kepala="00"
        If i>=10 AND i<100 Then Kepala="0"
        If i>100 Then Kepala=""
       
        Gallery.AddImageFromWebAt(i-1, Main.LokasiURLIklan & Kepala & i & ".JPG")
    Next
   
   
    If posSelected > Gallery.Length Then
        posSelected = Gallery.Length-1
    End If
   
    Gallery.Selection = posSelected
End Sub

but i always get error like this:
B4X:
java.lang.StackOverflowError

any suggestion about how to use this lib correctly?
the string is correct. perhaps i miss something?
 

Ratna Fang

Member
Licensed User
Longtime User
confirmed. the address is correct. i checked the log, copy and paste in web browser URL, it works.
but if i use it in this code, it's failed.
 
Top