B4A Library Today I introduce my new library [ICOSImageAnimator 1.3]

Hi guys, today I introduce a new library ICOSImageAnimator.

This library is designed to create a slide show.

The demo is very clear and simple.

Use it and let me know.

Any ideas for future updates is appreciated.
 

Attachments

  • ICOSImageAnimator 1.0.zip
    368.2 KB · Views: 916
  • ICOSImageAnimator 1.3.zip
    295.3 KB · Views: 481
Last edited:

NFOBoy

Active Member
Licensed User
Longtime User
Your libraries really make it easy to add some Pop! to my apps. Thanks so much!

Ross
 

Smee

Well-Known Member
Licensed User
Longtime User
Thank you for all your efforts Lonelystar,

Did you ever get around to finishing the coverflow style library?

Regards

Joe
 

lonleystar

Well-Known Member
Licensed User
Longtime User
Thank you for all your efforts Lonelystar,

Did you ever get around to finishing the coverflow style library?

Regards

Joe
Hi Smee , Thank you for choosing my library.

about Cowerflow im working on it, but i´ll publish it only when I'm sure that there are no errors and is fast and fluid as ICOSPowerGallery.

best regards

G.Salvi
 

MaxApps

Active Member
Licensed User
Longtime User
Hi

Very nice library and very useful.
But I was wondering, if it is possible to have no background color (alpha=0)?

Kind regards
Jakob
 

asmag

Member
Licensed User
Longtime User
Hi Lonleystar!

Your library is fantastic! Thank you for sharing it with us.

Regards

asmag
 

MaxApps

Active Member
Licensed User
Longtime User
Hi Lonestar

I am still trying, to figure out, how to avoid having a background. I am using pictures, that are not fitting into a square and therefore, I would like to have the background color set to alpha=0
Is that possible?

Kind regards
Jakob
 

lonleystar

Well-Known Member
Licensed User
Longtime User
Hi Lonestar

I am still trying, to figure out, how to avoid having a background. I am using pictures, that are not fitting into a square and therefore, I would like to have the background color set to alpha=0
Is that possible?

Kind regards
Jakob
Hi MaxApps download ICOSImageView and use this instead ImageView From Basic


best regards

G.Salvi
 

jota

Active Member
Licensed User
Longtime User
Hi, thanks for such good libraries, I think I found a mistake in this. I am attaching a sample that shows the problem. Thank you very much
 

Attachments

  • example of the failure.zip
    41.8 KB · Views: 166

lonleystar

Well-Known Member
Licensed User
Longtime User
Hi, thanks for such good libraries, I think I found a mistake in this. I am attaching a sample that shows the problem. Thank you very much
Hi jota, problem solved, you should use first i.SetBitmap and aftert iv.SetBackgroundImage

anyway this is your code:

Sub Activity_Create(FirstTime As Boolean)
'a display example 724x480
i.Initialize("i")
iv.Initialize("")

'sizes equals
Activity.AddView(iv,0,0,100%x,50%y)
Activity.AddView(i,0,iv.Height,iv.Width,iv.Height)

'created a graphic object size
bmpDoc.Initialize(File.DirAssets,"doc.png")
Dim r As Rect
r.Initialize(0,0,iv.Width,iv.Height)
bmpt.InitializeMutable(iv.Width,iv.Height)
c.Initialize2(bmpt)
c.DrawBitmap(bmpDoc,Null,r)

***********************************
'problem solved

i.SetBitmap=bmpt

iv.SetBackgroundImage(bmpt)

***********************************

End Sub

I think u mean this let me know.

best regard


G.Salvi
 
Top