Tag: sqlite

  • Android SQLite Transaction Example with INSERT Prepared Statement

    Today I’m going to share an Android SQLite transaction example that I consider as one of the most useful test I made with Android SQLite. I’m really excited to share this since it helped me a lot and maybe it can help some more people as well. This post will cover the following contents: 1.0 […]

  • Android AutocompleteTextView with Custom Adapter Example

    Before this Android AutocompleteTextView with custom adapter example, we made the code on Android AutocompleteTextView with suggestions from SQLite database, that’s really fine and useful, but here’s another problem: What if you want to customize the appearance of the drop-down suggestions? This is where the custom ArrayAdapter will come to the scene. Using this post, […]

  • Android AutocompleteTextView with Database Data as Suggestions

    Our code example for today is about a very useful Android widget called AutocompleteTextView. Specifically, we’ll code an Android AutocompleteTextView with database data as drop-down suggestions. If you’re not yet familiar with AutocompleteTextView, this widget looks like an EditText but shows completion suggestions automatically while the user is typing. The list of suggestions is displayed […]