input dialog

  1. M

    Android Question Native Input Dialogs Android (No B4XDialogs)

    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)...
  2. M

    iOS Question Native msgbox input field UI

    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 🎁!
  3. alimanam3386

    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...
  4. uniplan

    Android Question change color of input dialogs (B4XInputTemplate)

    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
  5. R

    Android Question Simple input dialog with coloured text.

    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...
Top