xui custom view

  1. G

    B4J Question [B4X] [XUI] xResizeAndCrop - MinCroppedWidth/Height non scaled (possible bug?)

    Good morning, @klaus, congratulations on this control. I'm considering using it in a small project. I noticed a small problem: setting the MinCroppedWidth property (and implicitly MinCroppedHeight based on the set ratio) doesn't consider the pixels of the original image, but those of the...
  2. LWGShane

    Android Code Snippet [XUI][Custom Views] Create Event Name for CallSub

    Just a simple method that makes creating event names for CallSub easier. Useful for Custom Views. Method: Private Sub CreateEventName (SubName As String) As String Return $"${mEventName}_${SubName}"$ End Sub To use: CallSub(mCallBack, CreateEventName("YourEvent"))
Top