event

  1. Myr0n

    Android Question How can I add a new event in xCustomListView?

    Hello As far as I know xCustomListView now is included as internal library (lib version 1.67) but a not long time ago was a custom view until version 1.66. My question is, how can I add an #Event: ItemLongClick (Index As Int, Value As Object) and use it in my app since there is not included the...
  2. K

    Android Question custom view parent click

    Hii experts, My custom view Label class is working fine. I add custom view label object in custom list view by add row function. But customlistview_itemclick event is not running when I click on custom view. Here is my code of custom cllick event Private Sub mBase_Click Log(mCallBack)...
  3. Sandman

    Android Question [SOLVED] Activity_PermissionResult event is never called

    I have this code in an activity: Sub theButton_Click ' Have we permission to use camera? Private rp As RuntimePermissions Private havePermission As Boolean = True If Not(rp.Check("android.permission.CAMERA")) Then Msgbox("We need this permission because reasons so...
  4. Thorsen

    Wish Abstract designer - go to event implementation

    Hi, as a former VB6 user I expected to find a shortcut from designer to event code. For now I go to module and search for/create the implementation It's nice to generate from designer by right click on control - generate - I expected a similar - 'implementation/code' - submenu that would take...
  5. Star-Dust

    B4J Library [B4X] [XUI] SD: B4XViewEvent

    Using the XUI views I realized the need to follow the events of Touch, Drag, Click and Release in a unique way. Required XUI 1.72+ In Android I would use this command: Sub EventName_Touch (Action As Int, X As Float, Y As Float) In B4J I would use this: Sub EventName_MouseDragged (EventData As...
  6. Star-Dust

    B4J Question [SOLVED] OnTouchListener event

    I created a class that changes the event View as a parameter by changing the view. This works well in B4A but does not work in B4J. This is the code: Sub Class_Globals Private CallBack As Object 'ignore Private EventName As String 'ignore End Sub 'Initializes the object. You can add...
  7. MarkusR

    Android Question Event from CustomView Class to Activity Modul?

    is there a Simple way to create a event in a Customview to catch this Event in the Activity Modul? something like CustomView: Sub ButtonFinish_Click RaiseEvent Ready(1) End Sub --- Activity: Sub Ready(a as int) End Sub
Top