B4A Library ProBundle

Informatix

Expert
Licensed User
Longtime User
I'm not sure to see the relationship with the problem of damaged zip file you mentioned but I'm glad for you anyway.
 

Merlot2309

Active Member
Licensed User
Longtime User
It turned out that the zip file was not damaged; however I guess that my code did not "close" the zip file(s) correctly after downloading.
 

mr.gedo

Member
hello, @Informatix i'm getting problem with OverlayWindow after updating B4A and sdk to Android 10
This error appears when trying to Compile project

B4X:
B4A Version: 10.50
Parsing code.    (0.00s)
    Java Version: 8
Building folders structure.    (0.03s)
Compiling code.    (0.01s)
Compiling layouts code.    (0.00s)
Organizing libraries.    (0.00s)
    (AndroidX SDK)
Generating R file.    (0.00s)
Compiling generated Java code.    Error
javac 1.8.0_271
src\b4a\example\main.java:340: error: package b4a.flm.overlaywdw does not exist
public b4a.flm.overlaywdw.OverlayPermission _op = null;
                         ^
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
1 error

Any advice?
 

Informatix

Expert
Licensed User
Longtime User
I compiled my demo projects with B4A version 10.50 on an Android 10 device with SDK 30 and got no issue.
 

mr.gedo

Member
hello @Informatix,
Good day,

Please how can i add animation to OverlayWindow like fade-in whe open and fade-out when close ?
i try (Animation lib) but dont work so if there's solution to do this please tell me

thanks
 

Informatix

Expert
Licensed User
Longtime User
hello @Informatix,
Good day,

Please how can i add animation to OverlayWindow like fade-in whe open and fade-out when close ?
i try (Animation lib) but dont work so if there's solution to do this please tell me

thanks
Here's an example.
In the demo OverlayInfo, add the NineOldAndroids library and insert this code just after OW.Open in ShowWindow:
B4X:
        Dim AnimScaleX As noaObjectAnimator
        AnimScaleX.InitializeFloat(OW.Panel, AnimScaleX.PROPERTY_SCALE_X, 0, 1, "")
        AnimScaleX.RepeatCount = AnimScaleX.REPEATCOUNT_INFINITE
        AnimScaleX.RepeatMode = AnimScaleX.REPEATMODE_REVERSE
        AnimScaleX.Start
Another example:
B4X:
        Dim AnimAlpha As noaObjectAnimator
        AnimAlpha.InitializeFloat(OW.Panel, AnimAlpha.PROPERTY_ALPHA, 0, 1, "")
        AnimAlpha.RepeatCount = AnimAlpha.REPEATCOUNT_INFINITE
        AnimAlpha.RepeatMode = AnimAlpha.REPEATMODE_REVERSE
        AnimAlpha.setDuration(1000)
        AnimAlpha.Start
 

mr.gedo

Member


Thank you very much it's work fine but how can i make fade-out when i Stopservice ?
 

johnmie

Active Member
Licensed User
Longtime User
Dear Frédéric,
I've successfully used some of your libraries (e.g. B4A ultimate list-viewer) in the past and am now interested in ArchiverPlusZip for B4J. Where can I download it (as "download here:" above has no link)?
Thanks for your help.
john m.
 

sea1812

Member
Licensed User
Hi, would someone can tell me how to fix this problem ? Thanks a lot.
The project is OverlayInfo in ProBoundle's Example OverlayWindow + source v1.2.zip.

B4X:
SvcOverlayInfo - 118: Undeclared variable 'c' is used before it was assigned any value.
SvcOverlayInfo - 114: Undeclared variable 'c' is used before it was assigned any value.
SvcOverlayInfo - 11: Unknown type: cache<br />Are you missing a library reference?

My B4A Version is 10.70
 

Informatix

Expert
Licensed User
Longtime User
There's a missing library: Cache.
 

sea1812

Member
Licensed User
Thanks a lot
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…