/android-sqlite-links-demo

SQLiteOpenHelper and Basic Networking Sample Android App

Primary LanguageJava

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