Shay Well-Known Member Licensed User Longtime User Feb 19, 2012 #1 Erel I think the AutoCompleteEditText is not working with hebrew can you please confirm
Erel B4X founder Staff member Licensed User Longtime User Feb 19, 2012 #2 Just tried it now. I do get the list of suggestions. However it seems that there is a problem with deleting the text. Upvote 0
Just tried it now. I do get the list of suggestions. However it seems that there is a problem with deleting the text.
Shay Well-Known Member Licensed User Longtime User Feb 19, 2012 #3 can you send the example code you used thanks Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 19, 2012 #4 B4X: Sub Globals Dim a As AutoCompleteEditText End Sub Sub Activity_Create(FirstTime As Boolean) Activity.LoadLayout(1) a.SetItems(Array As String("אב", "אבג")) End Sub The layout file includes a single AutoCompleteEditText named 'a'. Upvote 0
B4X: Sub Globals Dim a As AutoCompleteEditText End Sub Sub Activity_Create(FirstTime As Boolean) Activity.LoadLayout(1) a.SetItems(Array As String("אב", "אבג")) End Sub The layout file includes a single AutoCompleteEditText named 'a'.
Shay Well-Known Member Licensed User Longtime User Feb 19, 2012 #5 I will try it, can you try using list Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 19, 2012 #6 There is no difference between using a list or an array. Upvote 0
Shay Well-Known Member Licensed User Longtime User Feb 19, 2012 #7 I moved the Dim a As AutoCompleteEditText into the global (was on the sub) and removed the a.init (on my code) and it is now working thanks Upvote 0
I moved the Dim a As AutoCompleteEditText into the global (was on the sub) and removed the a.init (on my code) and it is now working thanks