EditText with MultiAutocomplete Dynamic Text Select - android

I want to make EditText Card like View that have autocomplete feature , and auto completes are fetched using retrofit api , example can be shown below:
Can you suggest some easy to use gitHub library to implement this View in android or suggest the possibilities?
Note:
This question is entirely different from hello autocompletion because i am asking about custom api's and my view is very much different.

check out this one and this one
google has it's own chips but I don't know why they don't publish that for developers.

Related

Android Autocomplete custom adapter view

Autocomplete in android makes easier to pick an item from the search text, i used listview for my previous project and it did quiet simple, in my new project i want to make something different view for autocomplete result, i did a Google for a some functionality but no luck.
I got a screenshot of a popular application, they have used different style,
like this,
how to achieve this? is there any library available? Helps appreciated!.
Yes, there are many available. I would recommend android-chips . There is a working example of this under samples folder.

Icon Next to the Search Orb in Android TV App

How can I add an icon next to the search orb, just as displayed below? I'd like to display a login page when the user clicks on the icon.
You can't, if you want to use the standard widgets offered by the Leanback library, such as BrowseFragment.
There is a way of creating your own version of the BrowseFragment widget, so that it is fully customizable and you can add as many buttons as you like, but it is definitely not easy to do. I've written a series of posts on this subject, which you can find here:
Building for Android TV
There is also a demo project that already gives you a starting point for the custom interface. The code can be found on this GitHub repo (episode_4 is probably what you're looking for).

Android QuickActions? PopupMenu? Popup Window?

I'm currently developing an Android app for a client. Problem is their mockup screens contained a UI view that I'm unfamiliar with. In short, I'm not sure what approach/implementation to use.
This is what I'm trying to achieve:
The user taps on SALES TOOLS, and a popup of some sort appears with options leading to other features of the app.
Any suggestions on what implementation I can use?
There are lots of library Available in market
Please check this URL it may be help you links given below
Chrome Style Help Popups
Quick-action-pattern-in-Android
Another alternative would be "super-tooltips":
https://github.com/nhaarman/supertooltips
Use android.widget.PopupWindow to create popwindow for a view.
using it various method you can put the window where ever you want.
Use this link will satisfy your needs .
https://androidresearch.wordpress.com/2012/05/06/how-to-create-popups-in-android/

implementing autocorrect affecting another application

I saw many posts about making the autocomplete to the current autocomplete text view
but I need to make the autocomplete to another application
for example , I want to use my program/service to write inside skype or facebook or browser
how can I implement that
please explain to me with very basic

MultiAutoCompleteTextView like Text messaging Application with custom users list

I try to make my own MultiAutoCompleteTextView to make it works like the recipient field in the text messaging application in Android but with my own users list.
I used custom library on Github but no one seems to correspond to my need.
I see there's something like this here https://plus.google.com/+RomanNurik/posts/WUd7GrfZfiZ, but I didn't manage to provide my own users list instead of phone contacts list or phone mails list (What a pity because this is absolutly what I need)
Did someone succeed to make this ?
you can use TokenAutoComplete library for that. It is easy to implement and use.

Categories

Resources