About 428,000 results
Open links in new tab
  1. android - Displaying data from SQLite database in a ListActivity ...

    Apr 7, 2011 · The class OffViaggListActivity make a bind to the unique service in the application (called Servizio) then, when the bind is done, it call a method on Servizio (eseguiComandoLocale(...)) that make a query on the SQLite database and …

  2. android - SQLite to ListActivity - Stack Overflow

    Sep 20, 2010 · You need to extend the SimpleCursorAdapter and have it return sub-views for rows. You can use the position of the row the ListView requests as an index into a row of your SQL results. Watch this video on customizing ListView.

  3. android - Loading a BIG SQLiteDatabase in a ListActivity - Stack Overflow

    Apr 1, 2013 · I'm working on an Android project I need to finish very fast. One of the app's features is loading a SQLite database content and listing it in a ListView inside a ListActivity. The database contains a few tables, among which 2 are very large.

  4. Save data using SQLite | App data and files | Android Developers

    Feb 10, 2025 · Saving data to a database is ideal for repeating or structured data, such as contact information. This page assumes that you are familiar with SQL databases in general and helps you get started with SQLite databases on Android. The APIs you'll need to use a database on Android are available in the android.database.sqlite package.

  5. How to View and Locate SQLite Database in Android Studio?

    Jan 6, 2025 · In this article, we will learn how to view and locate SQLite database in Android Studio using device file explorer. Note: Package name is found at the top of any class e.g. in MainActivity.java class it is found at the top by the syntax. package package_name; Step 1: Open android studio project which has SQLite database connection.

  6. How to Use a SQLite Database with Android Studio

    Dec 5, 2024 · In this comprehensive guide, I‘ll teach you how to setup and use a SQLite database in your Android Studio projects, even if you have no prior database experience. What is SQLite? SQLite is an embedded, open-source database that stores data locally on an Android device.

  7. How to Create and Add Data to SQLite Database in Android?

    Jan 6, 2025 · In this article, we will take a look at creating an SQLite database in the Android app and adding data to that database in the Android app. This is a series of 4 articles in which we are going to perform the basic CRUD (Create, Read, Update, and Delete) operation with SQLite Database in Android.

  8. SQLite Tutorial With Example In Android Studio

    Sep 30, 2021 · Understand SQLite following our step by step tutorial with example in Android Studio. Android has built in SQLite database implementation. It is available locally over the device(mobile & tablet) and contain data in text format.

  9. How to use SQLite Database to display as a list view in Android Studio

    Apr 23, 2018 · Use room, it will be easy to use local SQLite db using room, all you need to define entity, dao and database using Room annotations. For displaying list of records in listview, just create list view adapter and bind record data to views in item layout.

  10. SeifertChris/Android-SQLiteDatabase-Example-with-ListView

    Android-SQLiteDatabase-Example-with-ListView. This is an example that allows a user to store a username and score into sqlite database and view in listView. This was created to help others use the SQLiteDatabase within the Android Studio Platform.

Refresh