Skip to main content

AutocompleteTextview items from SQLite database

AutoCompleteTextView is yet another basic controls in Android. The main purpose is to provide a suggestion list while you type on the textbox (as in the image below). This time instead of listing a regular ArrayList, I will show how to populate the list from a offline database table  through SQLite.

Screenshot_1488288146

Starts by creating a new project, create a BASIC PROJECT. –> the tutorial is here http://blog.kerul.net/2016/12/creating-new-android-studio-project.html .

readmorebutton

The interface layout as in content_main.xml .

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/content_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="net.kerul.stationlist.MainActivity"
    tools:showIn="@layout/activity_main">

    <AutoCompleteTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/fromstation"
        android:layout_alignParentTop="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        android:layout_toEndOf="@+id/textView" />

    <TextView
        android:text="FROM"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:id="@+id/textView" />

    <TextView
        android:text="TO"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/fromstation"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_marginTop="11dp"
        android:id="@+id/textView2" />

    <AutoCompleteTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/fromstation"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        android:id="@+id/tostation"
        android:layout_alignLeft="@+id/fromstation"
        android:layout_alignStart="@+id/fromstation" />
</RelativeLayout>

 

The database helper class as in MyDB.java

package net.kerul.stationlist;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;


public class MyDB extends SQLiteOpenHelper {
    final protected static String DATABASE_NAME="KTM";//define DB name
    public MyDB(Context context) {
        super(context, DATABASE_NAME, null,1);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {//1st time install auto create DB

        //here is the database definition with some data to insert

        //CREATE TABLE entry for table Stations
        db.execSQL("CREATE TABLE Stations (ID TEXT, Name TEXT, PRIMARY KEY(ID));");
        //CREATE TABLE entry for table Train_run
        db.execSQL("CREATE TABLE Train_run (ID	INTEGER, from_station_ID TEXT, to_station_ID TEXT, ticket_price REAL,PRIMARY KEY(ID));");

        //data entry (Table Stations)
        db.execSQL("INSERT INTO Stations VALUES ('KA 02','Kuala Lumpur')");
        db.execSQL("INSERT INTO Stations VALUES ('KA 03','Bank Negara')");
        db.execSQL("INSERT INTO Stations VALUES ('KA 04','Putra')");
        db.execSQL("INSERT INTO Stations VALUES ('KA 05','Segambut');");
        db.execSQL("INSERT INTO Stations VALUES ('KA 06','Kepong');");
        db.execSQL("INSERT INTO Stations VALUES ('KA 07','Kepong Sentral');");
        db.execSQL("INSERT INTO Stations VALUES ('KA 08','Sungai Buloh');");
        db.execSQL("INSERT INTO Stations VALUES ('KA 09','Kuang');");
        db.execSQL("INSERT INTO Stations VALUES ('KA 10','Rawang');");
        db.execSQL("INSERT INTO Stations VALUES ('KA 11','Serendah')");
        db.execSQL("INSERT INTO Stations VALUES ('KA 12','Batang Kali');");
        db.execSQL("INSERT INTO Stations VALUES ('KA 13','Rasa');");
        db.execSQL("INSERT INTO Stations VALUES ('KA 14','K. Kubu Bharu');");
        db.execSQL("INSERT INTO Stations VALUES ('KA 15','Tg. Malim');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 01','Midvalley');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 02','Seputeh');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 03','Salak Selatan');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 04','Bandar Tasik Selatan');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 05','Serdang');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 06','Kajang');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 07','UKM');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 08','Bangi');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 09','Batang Benar');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 10','Nilai');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 11','Labu');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 12','Tiroi');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 13','Seremban');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 14','Senawang');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 15','Sg Gadut');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 16','Rembau')");
        db.execSQL("INSERT INTO Stations VALUES ('KB 17','Tampin');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 18','Btg Melaka');");
        db.execSQL("INSERT INTO Stations VALUES ('KB 19','Gemas');");
        db.execSQL("INSERT INTO Stations VALUES ('KC 01','Sentul');");
        db.execSQL("INSERT INTO Stations VALUES ('KC 02','Batu Kentonmen');");
        db.execSQL("INSERT INTO Stations VALUES ('KC 03','Kampung Batu')");
        db.execSQL("INSERT INTO Stations VALUES ('KA 01','KL Sentral');");
        db.execSQL("INSERT INTO Stations VALUES ('KC 04','Taman Wahyu');");
        db.execSQL("INSERT INTO Stations VALUES ('KC 05','Batu Caves');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 01','Angkasapuri');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 02','Pantai Dalam');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 03','Petaling');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 04','Jalan Templer');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 05','Kg. Dato Harun');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 06','Seri Setia');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 07','Setia Jaya');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 08','Subang Jaya');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 09','Batu Tiga');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 10','Shah Alam');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 11','Padang Jawa');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 12','Bukit Badak');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 13','Klang');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 14','Teluk Pulai');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 15','Teluk Gadong');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 16','Kg. Raja Uda');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 17','Jalan Kastam');");
        db.execSQL("INSERT INTO Stations VALUES ('KD 18','Pelabuhan Klang');");

        //data entry (Table Train_run)
        db.execSQL("INSERT INTO Train_run VALUES (1,'KD 18','KD 18',0.0);");
        db.execSQL("INSERT INTO Train_run VALUES (2,'KD 18','KD 17',1.5);");
        db.execSQL("INSERT INTO Train_run VALUES (3,'KD 18','KD 16',1.9);");
        db.execSQL("INSERT INTO Train_run VALUES (4,'KD 18','KD 15',1.9);");
        db.execSQL("INSERT INTO Train_run VALUES (5,'KD 18','KD 14',1.9);");
        db.execSQL("INSERT INTO Train_run VALUES (6,'KD 18','KD 13',2.3);");
        db.execSQL("INSERT INTO Train_run VALUES (7,'KD 18','KD 12',2.3);");
        db.execSQL("INSERT INTO Train_run VALUES (8,'KD 18','KD 11',2.8);");
        db.execSQL("INSERT INTO Train_run VALUES (9,'KD 18','KD 10',3.3);");
        db.execSQL("INSERT INTO Train_run VALUES (10,'KD 18','KD 9',3.9);");
        db.execSQL("INSERT INTO Train_run VALUES (11,'KD 18','KD 8',4.3);");
        db.execSQL("INSERT INTO Train_run VALUES (12,'KD 18','KD 7',4.7);");
        db.execSQL("INSERT INTO Train_run VALUES (13,'KD 18','KD 6',4.8);");
        db.execSQL("INSERT INTO Train_run VALUES (14,'KD 18','KD 5',4.9);");
        db.execSQL("INSERT INTO Train_run VALUES (15,'KD 18','KD 4',5.3);");
        db.execSQL("INSERT INTO Train_run VALUES (16,'KD 18','KD 3',5.4);");
        db.execSQL("INSERT INTO Train_run VALUES (17,'KD 18','KD 2',5.6);");
        db.execSQL("INSERT INTO Train_run VALUES (18,'KD 18','KD 1',5.9);");
        db.execSQL("INSERT INTO Train_run VALUES (19,'KD 18','KA 01',6.4);");
        db.execSQL("INSERT INTO Train_run VALUES (20,'KD 18','KA 02',6.5);");
        db.execSQL("INSERT INTO Train_run VALUES (21,'KD 18','KA 03',6.7);");
        db.execSQL("INSERT INTO Train_run VALUES (22,'KD 18','KA 04',6.9);");
        db.execSQL("INSERT INTO Train_run VALUES (23,'KD 18','KC 01',7.1);");
        db.execSQL("INSERT INTO Train_run VALUES (24,'KD 18','KC 02',7.1);");
        db.execSQL("INSERT INTO Train_run VALUES (25,'KD 18','KC 03',7.2);");
        db.execSQL("INSERT INTO Train_run VALUES (26,'KD 18','KC 04',7.4);");
        db.execSQL("INSERT INTO Train_run VALUES (27,'KD 18','KC 05',7.7);");
        db.execSQL("INSERT INTO Train_run VALUES (28,'KD 18','KA 15',15.1);");
        db.execSQL("INSERT INTO Train_run VALUES (29,'KD 18','KA 14',12.7);");
        db.execSQL("INSERT INTO Train_run VALUES (30,'KD 18','KA 13',11.9);");
        db.execSQL("INSERT INTO Train_run VALUES (31,'KD 18','KA 12',11.5);");
        db.execSQL("INSERT INTO Train_run VALUES (32,'KD 17','KD 18',1.1);");

    }//onCreate


    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        if (newVersion > oldVersion){//renew DB if DB upgraded to new version
            //do something if database is updated
            db.execSQL("DROP TABLE IF EXISTS Stations");
            db.execSQL("DROP TABLE IF EXISTS Train_run");
            onCreate(db);
        }
    }//onUpgrade
}//end MyDB database helper

And the MainActivity.java is below. Bear in mind that the description of what the coding do are available in the comment.

package net.kerul.stationlist;

import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.View;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.ArrayAdapter;
import android.widget.AutoCompleteTextView;

import java.util.ArrayList;

public class MainActivity extends AppCompatActivity {
    private AutoCompleteTextView fromstation, tostation;
    private MyDB mydb;
    private SQLiteDatabase db;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
        fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
                        .setAction("Action", null).show();
            }
        });

        //UI the AutoCompleteTextView
        fromstation = (AutoCompleteTextView)findViewById(R.id.fromstation);
        tostation = (AutoCompleteTextView)findViewById(R.id.tostation);

        //create the ArrayList from database
        mydb = new MyDB(this);
        db = mydb.getWritableDatabase();//connect to MyDB
        //
        final String [] mydata;
        ArrayList<String> array = new ArrayList<>();
        //Inside the method you've read the cursor, loop through it and add those item to array
        String sql="SELECT * FROM Stations";
        //execute SQL
        Cursor cr = db.rawQuery(sql, null);
        cr.moveToFirst();//cursor pointing to first row
        mydata = new String[cr.getCount()];//create array string based on numbers of row
        int i=0;
        do  {
            mydata[i] = cr.getString(1);//insert new stations to the array list
            //Log.i("ArrayList",mydata[i]);
            i++;
        }while(cr.moveToNext());
        //Finally Set the adapter to AutoCompleteTextView like this,
        ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
                        android.R.layout.simple_dropdown_item_1line, mydata);
        //populate the list to the AutoCompleteTextView controls
        fromstation.setAdapter(adapter);
        tostation.setAdapter(adapter);

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.menu_main, menu);
        return true;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();

        //noinspection SimplifiableIfStatement
        if (id == R.id.action_settings) {
            return true;
        }

        return super.onOptionsItemSelected(item);
    }
}

Comments

Popular posts from this blog

Several English proverbs and the Malay pair

Or you could download here for the Malay proverbs app – https://play.google.com/store/apps/details?id=net.kerul.peribahasa English proverbs and the Malay pair Corpus Reference: Amir Muslim, 2009. Peribahasa dan ungkapan Inggeris-Melayu. DBP, Kuala Lumpur http://books.google.com.my/books/about/Peribahasa_dan_ungkapan_Inggeris_Melayu.html?id=bgwwQwAACAAJ CTRL+F to search Proverbs in English Definition in English Similar Malay Proverbs Definition in Malay 1 Where there is a country, there are people. A country must have people. Ada air adalah ikan. Ada negeri adalah rakyatnya. 2 Dry bread at home is better than roast meat home's the best hujan emas di negeri orang,hujan batu di negeri sendiri Betapa baik pun tempat orang, baik lagi tempat sendiri. 3 There's no accounting for tastes We can't assume that every people have a same feel Kepala sama hitam hati lain-lain. Dalam kehidupan ini, setiap insan berbeza cara, kesukaan, perangai, tabia...

searchdelete.php (list records of table to delete)

< form name = 'search' method = 'get' action = '' > Insert the firstname < input type = 'text' name = 'txtname' > < input type = 'submit' value = 'search name' > </ form > < ?php //database connect $db = mysqli_connect ( "localhost" , "root" , "" , "mycompanyhr" ); //checking database connection if ( $db == false ) { echo "Connect failed: " . mysqli_connect_error ( $db ); exit (); } else { echo "Connection successful" ; } $n = $_GET [ 'txtname' ]; $sql = "select EMPNO, FIRSTNAME, LASTNAME, WORKDEPT, PHONENO from employee where FIRSTNAME like '%$n%' " ; $rs = mysqli_query ( $db , $sql ); if ( $rs == false ){ echo ( "Query cannot be executed!<br>" ); echo ( "SQL Error : " . mysqli_error ( $db )); } else { echo "<table border=1>...

Pemasangan Joomla! 1.7 pada pelayan web komputer anda

Latihan ini akan memasang sistem pengurusan kandungan laman web ke dalam pelayan web yang anda telah pasang sebelum ini . LANGKAH 1: Aktifkan Pelayan Web dan Pangkalan Data Aktifkan XAMPP Control Panel, melalui “ Start->All Programs->ApacheFriends->XAMPP Control Panel ”. Rajah 2.1 Pastikan pelayan web Apache dan pelayan pangkalan data MySQL diaktifkan dengan klik butang START. -> Rajah 2.2

Applications of Web 2.0

Web 2.0 describes the changing trends in the use of World Wide Web technology and web design that aim to enhance creativity , secure information sharing, collaboration and functionality of the web. Web 2.0 concepts have led to the development and evolution of web-based communities and hosted services , such as social-networking sites , video sharing sites , wikis , blogs . Find a website or web application that conform to the criteria of Web 2.0. Put the name of the application and the URL in the comment below. Please provide your full name and matrix number. Make sure the application you choose is not already chosen by your friend in the previous comment.

Installing Google AdMob into Android Apps

Previously I wrote on why ads are needed to help maintaining an app. Read the article here http://blog.kerul.net/2011/05/generating-revenue-from-free-mobile.html . ---This is quite an old article. You may find the latest supporting AdMob 6.x in here http://blog.kerul.net/2012/08/example-how-to-install-google-admob-6x.html --- This is quite a long tutorial, there are 3 major steps involved. The experiment is done using Windows 7, Eclipse Helios and AdMob SDK 4.1.0 (which currently is the latest-during time of writing). STEP 1: Get the ads from AdMob.com To display the AdMob ads in your Android mobile apps, you need to register first at the admob.com . After completing the registration, login and Add Site/App. Refer to Figure 1. Figure 1 Choose the desired platform and fill in the details (as in Figure 2). Just put http:// in the Android Package URL if your app is not published in the market yet. And click Continue. Figure 2 Download the AdMob Android SDK, and save the zip fil...