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
Related
I am trying to implement an EditText which takes a url from user and loads the desired url in the webview. I have accomplished this task. Now I want to provide corresponding suggestions of urls on typing a word in the EditText same like as Google provides. I have a sample application from google play store which has implemented this scenario.
URL to the app: https://play.google.com/store/apps/details?id=video.downloader.videodownloader&hl=en
I have searched every where to find a clue to start my work. But I couldn't find anything supportive.
Screen Shots for figuring out the Scenario:
Screen Shot
Screen Shot
Screen Shot
I am not using any database to fetch data from and to show in suggestion. I want to use EditText like an address bar of Google browser. When a user tap and type any word, it gives suggested urls respectively as showing in the screen shots.
I would use a search interface (documentation here: https://developer.android.com/guide/topics/search/) with a Content Provider. You should fill the content provider by using custom search JSON API https://developers.google.com/custom-search/v1/overview. It's a quite complicated task but I think you should start with this stack
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.
I want to do GooglePlus on Android. I know iOS have some open source which can be used to show the data based on their content-size and by maintaining the row linear, but I cannot search Android. I want to do it, but I do not know where to start. Can you give me some advice and links?
I am working on a relatively simple app using PhoneGap that is designed to be a field guide. Basically there will be buttons for different sections of the field guide. Tapping on one of these buttons will transition the user to another page with the content.
However, I would like to implement search functionality if possible. For example, the user could input a query and the app will return which "pages" that query appears on. I'm not really sure what the best way to go about implementing this would be, so any suggestions would be greatly appreciated.
The only type of search function I've used thus far with PhoneGap is using a filter search to search on a set of list elements.
If you have lots of .html files with your conten, a good option is to use Zoom search engine.
You have to execute a program and it will scan your .html files and index keywords.
You will have to style yourself the "search results" page, because the default isn't mobile friendly
I need to give a search box in my android app. As the user starts typing in the search text, I need to show him relevant suggestions. (As we see in the google-search widget on the home screen. If we see from the logs, com.android.quicksearchbox/.SearchActivity is started with android.search.action.GLOBAL_SEARCH intent and it searches in following: corpora:[web, apps, com.android.contacts/.activities.PeopleActivity]).
Only thing is I need the suggestions to be displayed from the web & my application DB.
Any idea how to implement this ? Do I need to implement my own SuggestionsProvider or can I directly use the native implementation? If so, how?
I think i figure it out myself.
Went through Searchable Dictionary code & QuickSearchBox code in android source.
Need two start 2 activities in a background thread. One will search for the search-term in my DB & other will search the same in Google. All the results will be seen in the suggestion list.
Google Suggest API provides suggestions as the user enters the text.