B4A Library AX_CustomAlertViewDialog

Another B4A library ?
AX_CustomAlertViewDialog


This is a wrapper for link

Version : 1.1




"Custom AlertView Dialogue is the world's most advanced alert view library. Custom AlertView Dialogue includes simple message popups, confirmation alerts, selector popups, action sheet bottom menus, and input/feedback contact forms. This library fixes many issues and crashes that plague other alert dialogue libraries and looks amazing while doing so!

Custom AlertView Dialogue is part of the Custom UI collection of beautiful, minimalistic, and customizable Android UI components."

if you liked my work you can make me more happy with a
slice of pizza:cool: ( you can change the amount of your donation by edit the link )
 

Attachments

  • AX_CustomAlertViewDialog.zip
    276.2 KB · Views: 855
  • AX_CustomAlertViewDialog_Lib.zip
    48.4 KB · Views: 820
Last edited:

Unobtainius

Active Member
Licensed User
Longtime User
the video looks amazing, cant wait to have a blast with it
 
Dear specialists,
Please, where could I find whole Custom UI collection of beautiful, minimalistic, and customizable Android UI components."?
Link do not work. Does those ammazing libraries exists? Or it disappeared?
 

mcqueccu

Well-Known Member
Licensed User
Longtime User
Dear specialists,
Please, where could I find whole Custom UI collection of beautiful, minimalistic, and customizable Android UI components."?
Link do not work. Does those ammazing libraries exists? Or it disappeared?

The link works fine here. Try refreshing your browser or switch to different one
 

TILogistic

Expert
Licensed User
Longtime User
Dear specialists,
Please, where could I find whole Custom UI collection of beautiful, minimalistic, and customizable Android UI components."?
Link do not work. Does those ammazing libraries exists? Or it disappeared?
see:

 

TILogistic

Expert
Licensed User
Longtime User
 
Another B4A library ?
AX_CustomAlertViewDialog


This is a wrapper for link

Version : 1.1




"Custom AlertView Dialogue is the world's most advanced alert view library. Custom AlertView Dialogue includes simple message popups, confirmation alerts, selector popups, action sheet bottom menus, and input/feedback contact forms. This library fixes many issues and crashes that plague other alert dialogue libraries and looks amazing while doing so!

Custom AlertView Dialogue is part of the Custom UI collection of beautiful, minimalistic, and customizable Android UI components."

if you liked my work you can make me more happy with a
slice of pizza:cool: ( you can change the amount of your donation by edit the link )
I would like to congratulate The author of this excellent dialog library. Because I do not see at all, your library allow Me to construct dialogs with many choices specified by words with no need to specify object coordinates on The screen. If I would have been forced to use for example Panel B4A object and panel.text for many string items, without sighted assistance, I would had to plea some B4A forum members for help to tune user interface. Thanks to your library, I can use it to create simple dialog based systems. For memory training quizes. Thank you for this library. Very well done.
 
Oh, DIP coordinates values are required, I have been overjoyed prematurely. It is good library for sighted majority, but for visually impaired ones no. I will try to use some input dialogs which are may be The part of B4A core library. I must deeply study core.xml for AN input dialog.
 

joko0124

Member
Licensed User
Longtime User
How can I show an alert dialog after the other? I mean when I click OnPositiveClicked I wanted to show other alert dialog. Thanks in advance! Cheers!
 

softmicro

Member
Licensed User
Longtime User
Hello everyone,

I'm encountering a significant compatibility issue with the AX_CustomAlertViewDialog library since upgrading my B4A environment to version 13.40, which supports SDK 35/36. I've installed the latest command-line tools (commandlinetools-win-13114758_latest.zip) and updated all required resources (7_25) to be up-to-date with Google Play Store requirements.

While most of my projects and other examples compile and run correctly with this new setup, I have one specific application that relies heavily on AX_CustomAlertViewDialog and is now completely non-functional.

The core of the problem seems to be related to the #Extends: androidx.appcompat.app.AppCompatActivity line in combination with the library's resource inclusion (#AdditionalRes: ..\resAX_CustomAlertViewDialog).

Specifically:

  • When #Extends: androidx.appcompat.app.AppCompatActivity is present, the compiled application crashes immediately upon launch, providing no useful error logs in the B4A IDE regarding the startup failure. Even a simple example from 2020 that uses this library exhibits the same behavior.
  • If I comment out the #Extends: androidx.appcompat.app.AppCompatActivity line, the application does launch. However, as soon as any action triggers the AX_CustomAlertViewDialog, I receive the following ClassCastException:
    main_inputdialog_click (java line: 684)
    java.lang.ClassCastException: com.aghajari.ax_customalertviewdialog.sample.main cannot be cast To androidx.appcompat.app.AppCompatActivity
    at stream.customalert.CustomAlertDialogue.show(CustomAlertDialogue.java:580)

    This error is expected, as removing the #Extends line obviously breaks the necessary inheritance for the library to function correctly, leading back to the original problem where the app cannot even start.
It appears there's a fundamental incompatibility or a required update needed for the AX_CustomAlertViewDialog library to work correctly with the latest SDK versions (35/36) and the androidx.appcompat.app.AppCompatActivity extension.

Given that this library is widely used, I believe this is an important issue for the community. Has anyone else encountered this specific problem?

@Erel, or @Aghajari (the creator of the library), could you please provide some guidance on how to resolve this? Is an update to the library necessary, or is there a workaround that allows androidx.appcompat.app.AppCompatActivity to coexist with the library's current implementation under SDK 35/36?

Thank you for your time and assistance.
 

NGUYEN TUAN ANH

Active Member
Licensed User
Hello everyone,

I'm encountering a significant compatibility issue with the AX_CustomAlertViewDialog library since upgrading my B4A environment to version 13.40, which supports SDK 35/36. I've installed the latest command-line tools (commandlinetools-win-13114758_latest.zip) and updated all required resources (7_25) to be up-to-date with Google Play Store requirements.

While most of my projects and other examples compile and run correctly with this new setup, I have one specific application that relies heavily on AX_CustomAlertViewDialog and is now completely non-functional.

The core of the problem seems to be related to the #Extends: androidx.appcompat.app.AppCompatActivity line in combination with the library's resource inclusion (#AdditionalRes: ..\resAX_CustomAlertViewDialog).

Specifically:

  • When #Extends: androidx.appcompat.app.AppCompatActivity is present, the compiled application crashes immediately upon launch, providing no useful error logs in the B4A IDE regarding the startup failure. Even a simple example from 2020 that uses this library exhibits the same behavior.
  • If I comment out the #Extends: androidx.appcompat.app.AppCompatActivity line, the application does launch. However, as soon as any action triggers the AX_CustomAlertViewDialog, I receive the following ClassCastException:
    main_inputdialog_click (java line: 684)
    java.lang.ClassCastException: com.aghajari.ax_customalertviewdialog.sample.main cannot be cast To androidx.appcompat.app.AppCompatActivity
    at stream.customalert.CustomAlertDialogue.show(CustomAlertDialogue.java:580)

    This error is expected, as removing the #Extends line obviously breaks the necessary inheritance for the library to function correctly, leading back to the original problem where the app cannot even start.
It appears there's a fundamental incompatibility or a required update needed for the AX_CustomAlertViewDialog library to work correctly with the latest SDK versions (35/36) and the androidx.appcompat.app.AppCompatActivity extension.

Given that this library is widely used, I believe this is an important issue for the community. Has anyone else encountered this specific problem?

@Erel, or @Aghajari (the creator of the library), could you please provide some guidance on how to resolve this? Is an update to the library necessary, or is there a workaround that allows androidx.appcompat.app.AppCompatActivity to coexist with the library's current implementation under SDK 35/36?

Thank you for your time and assistance.
Thanks, I have the same problem as you and have not seen any solution from @Erel .
 
Top