user909567
user909567

Reputation: 1

android SqLite AutoCompleteTextView

I want to create a table that has the columns EMPLOYER NAME, DATE, QUANTITY, and HOURS. Once the table is saved for employer name, next, time the AutoCompleteTextView for name should show the already saved employers name.

Upvotes: 0

Views: 316

Answers (1)

user370305
user370305

Reputation: 109237

  1. create a table in sqlite database.
  2. after it fetch the records from it using select query.
  3. and pass these records to auto complete text view as a string[].

Upvotes: 1

Related Questions