user4570857
user4570857

Reputation:

Android Webview Autofill Information like address, passwords, personal information

I want to create Autofill functionality for my Android demo app same as Chromium does. I have information like address, personal information, passwords. How can I integrate all this stuff on my custom browser? Please advice me.

Upvotes: 1

Views: 340

Answers (1)

Dhruv Patel
Dhruv Patel

Reputation: 1529

You can follow these steps,

  1. Collect each keywords(words) which user tries to search.
  2. Store in database with priorities
    • Number of time particular keyword is searched.
    • How much time user has spent on particular search.
    • Base on user likes.
    • If your database on cloud, you can also return what other user likes most.
    • Build searching patterns to identify priorities.
  3. Try to return data based on priorities when user types a word.

Upvotes: 1

Related Questions