Android Question jeremyfeinstein slidingmenu Issue

MrKim

Well-Known Member
Licensed User
Longtime User
I am using this sliding menu with the following code:

B4X:
Sub Globals
    Private SMEdit As SlidingMenu
.
.
.
 
Sub Activity_Create(FirstTime As Boolean)
.
.

   SMEdit.Initialize("SMEdit")
    jo = SMEdit
    Dim event As Object = jo.CreateEventFromUI("com.jeremyfeinstein.slidingmenu.lib.SlidingMenu$OnOpenListener", "Open", Null)
    jo.RunMethod("setOnOpenListener", Array(event))
    SMEdit.Mode = SMEdit.LEFT
    Dim lftMenu As Panel
    lftMenu.Initialize("")
    SMEdit.Menu.AddView(lftMenu, 0, 0, 100%x, 100%y)
    lftMenu.LoadLayout("Left")
    Dim offset As Int = 100%x - (CLV1.sv.Width + (2 * CLV1.sv.Left))
    SMEdit.BehindOffset = offset
.
.
.

Sub Open_Event (MethodName As String, Args() As Object) As Object

    SLMForEdit

End Sub

It works great! However the Open_Event has this warning:
upload_2018-10-31_12-48-56.png


And when the Open_Event Runs the following message is logged:
B4X:
Class not found: b4a.SlideMenu.customlistview, trying: b4a.camera2.customlistview

As I said, it works fine, but I am wondering if this will be an issue. Also trying to learn...
Thanks in advance for any information.
 

Attachments

  • upload_2018-10-31_12-48-7.png
    upload_2018-10-31_12-48-7.png
    11.3 KB · Views: 124
Top