Can ajax call be done in Android?

前端 未结 4 398
栀梦
栀梦 2020-12-11 03:51

I\'m developing an application in which I\'ve got search option. In that search box, if I type \'a\' I want all names of all my friends starting with a, which I\'ll get from

4条回答
  •  忘掉有多难
    2020-12-11 04:26

    Closest I know is using an AutoCompleteTextView. You will need to make a custom adapter for it that makes calls to the web server whenever a user types anything and returns filter results based on that.

    Here's an example.

提交回复
热议问题