Hi.
i'm trying to use the class in the link (by Erel).
https://www.b4x.com/android/forum/threads/class-searchview.48576/#content
I have 2 needs.
1) I would at the start, like in case of selectedchanged, that listview (lv) was not visible
2) I want to change listview color
In both cases if I add istrucions the App wait many seconds to show listview and then doesn't consider the istuctions.
I modified your code.
Here the code.
Case 1
Case 2
i'm trying to use the class in the link (by Erel).
https://www.b4x.com/android/forum/threads/class-searchview.48576/#content
I have 2 needs.
1) I would at the start, like in case of selectedchanged, that listview (lv) was not visible
2) I want to change listview color
In both cases if I add istrucions the App wait many seconds to show listview and then doesn't consider the istuctions.
I modified your code.
Here the code.
Case 1
B4X:
Private Sub et_TextChanged (Old As String, New As String)
lv.Clear
If lv.Visible = False Then lv.Visible = True
If et.Text=Null Then lv.Visible = False '<=== I insert This istruction
FillList(New)
End Sub
Case 2
B4X:
Public Sub Initialize (Callback As Object, EventName As String)
et.Initialize("et")
et.ShowClearButton = True
lv.Initialize("lv", False)
lv.Visible = False
lv.Color=Colors.LightGray '<==== I insert this istruction
prefixList.Initialize
substringList.Initialize
mCallback = Callback
mEventName = EventName
End Sub