Hi everyone, how can implement the native input dialogs of Android in my app?
i found this code here, but i don't know how to convert it:
private void showForgotDialog(Context c) {
final EditText taskEditText = new EditText(c);
AlertDialog dialog = new AlertDialog.Builder(c)...
Hi everyone, I need to implement a native msgbox to ask for an input with a textfield like this
How can I create this?
Thanks in advance and merry Christmas ?!
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...
Hi. i use the input dialogs (B4XInputTemplate)
https://www.b4x.com/android/forum/threads/b4x-input-dialogs-with-xui-views.101197/
how i can change the color of dialog?(background and color of header)
thank you
Currently use this code for a simple inputbox dialog. It uses the Dialogs library, version 4.01:
Sub InputBox(Prompt As String, Title As String, Default As String, Hint As String) As String
Dim Id As InputDialog
Dim iRet As Int
Id.Hint = Hint
Id.Input = Default
iRet = Id.Show(Prompt...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.