Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1.75 KB

README.md

File metadata and controls

23 lines (15 loc) · 1.75 KB

Demo app for SQLiteOpenHelper

This is a demo of how to build a basic image loading app that keeps track of the number of times each image is loaded using SQLite. This app is a useful demo of the following topics:

  • Perform networking with HttpURLConnection to load remote images into Bitmap objects
  • Create a database using SQLiteOpenHelper and create the database schema
  • Query and update data from tables within a database using a Cursor

You can review the following key files below:

Check the following Android guides for more details:

Walkthrough:

demo