This is simple application which insert data into Sqlite database --and shows the data from the database in a ListView
ListView is not used in android Anymore. We use RecyclerView and CardView in Android
This is the first Activity of application which shows data from database in listview. Register here buton will start a Registration Activity.
Submit button will add data to database and show it in the ListView of MainActivity. Update can be performed by clicking ListView items.
you can download the source code of this project from google drive https://drive.google.com/folderview?id=0BySLpWhqmbbdS0dtT1R2TXdBWEE&usp=sharing
click on the above link ->sign into your google account ->add this to your google drive -> open it in google drive and download it.
To create this Simpl application do the following:-
3.Then creae MainActivty and main.xml which shows the values from database in a
listView.
-->> for listView we need another layout t ospecify each Row of the LIstView
ListView is not used in android Anymore. We use RecyclerView and CardView in Android
- RecyclerView Demo is available on the following link
- RecyclerView with CardView Demo is available on the following link
This is the first Activity of application which shows data from database in listview. Register here buton will start a Registration Activity.
Submit button will add data to database and show it in the ListView of MainActivity. Update can be performed by clicking ListView items.
you can download the source code of this project from google drive https://drive.google.com/folderview?id=0BySLpWhqmbbdS0dtT1R2TXdBWEE&usp=sharing
click on the above link ->sign into your google account ->add this to your google drive -> open it in google drive and download it.
To create this Simpl application do the following:-
1. Create a class which extends SQLiteOpenHelper the class is given below
package com.arun.registrationform; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteDatabase.CursorFactory; import android.database.sqlite.SQLiteOpenHelper; public class RegistrationOpenHelper extends SQLiteOpenHelper { public static final String DATABASE_NAME = "REGISTRATION_DB"; public static final String TABLE_NAME = "REGISTRATION_TABLE"; public static final int VERSION = 1; public static final String KEY_ID = "_id"; public static final String FNAME = "F_NAME"; public static final String LNAME = "L_NAME"; public static final String SCRIPT = "create table " + TABLE_NAME + " (" + KEY_ID + " integer primary key autoincrement, " + FNAME + " text not null, " + LNAME + " text not null );"; public RegistrationOpenHelper(Context context, String name, CursorFactory factory, int version) { super(context, name, factory, version); // TODO Auto-generated constructor stub } @Override public void onCreate(SQLiteDatabase db) { // TODO Auto-generated method stub db.execSQL(SCRIPT); } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { // TODO Auto-generated method stub db.execSQL("drop table " + TABLE_NAME); onCreate(db); } }
2.create another class for writing all the Sqlite functions the class is given below
package com.arun.registrationform; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; public class RegistrationAdapter { SQLiteDatabase database_ob; RegistrationOpenHelper openHelper_ob; Context context; public RegistrationAdapter(Context c) { context = c; } public RegistrationAdapter opnToRead() { openHelper_ob = new RegistrationOpenHelper(context, openHelper_ob.DATABASE_NAME, null, openHelper_ob.VERSION); database_ob = openHelper_ob.getReadableDatabase(); return this; } public RegistrationAdapter opnToWrite() { openHelper_ob = new RegistrationOpenHelper(context, openHelper_ob.DATABASE_NAME, null, openHelper_ob.VERSION); database_ob = openHelper_ob.getWritableDatabase(); return this; } public void Close() { database_ob.close(); } public long insertDetails(String fname, String lname) { ContentValues contentValues = new ContentValues(); contentValues.put(openHelper_ob.FNAME, fname); contentValues.put(openHelper_ob.LNAME, lname); opnToWrite(); long val = database_ob.insert(openHelper_ob.TABLE_NAME, null, contentValues); Close(); return val; } public Cursor queryName() { String[] cols = { openHelper_ob.KEY_ID, openHelper_ob.FNAME, openHelper_ob.LNAME }; opnToWrite(); Cursor c = database_ob.query(openHelper_ob.TABLE_NAME, cols, null, null, null, null, null); return c; } public Cursor queryAll(int nameId) { String[] cols = { openHelper_ob.KEY_ID, openHelper_ob.FNAME, openHelper_ob.LNAME }; opnToWrite(); Cursor c = database_ob.query(openHelper_ob.TABLE_NAME, cols, openHelper_ob.KEY_ID + "=" + nameId, null, null, null, null); return c; } public long updateldetail(int rowId, String fname, String lname) { ContentValues contentValues = new ContentValues(); contentValues.put(openHelper_ob.FNAME, fname); contentValues.put(openHelper_ob.LNAME, lname); opnToWrite(); long val = database_ob.update(openHelper_ob.TABLE_NAME, contentValues, openHelper_ob.KEY_ID + "=" + rowId, null); Close(); return val; } public int deletOneRecord(int rowId) { // TODO Auto-generated method stub opnToWrite(); int val = database_ob.delete(openHelper_ob.TABLE_NAME, openHelper_ob.KEY_ID + "=" + rowId, null); Close(); return val; } }
3.Then creae MainActivty and main.xml which shows the values from database in a
listView.
This is MainActivity.java
package com.arun.registrationform; import android.app.Activity; import android.content.Intent; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.os.Bundle; import android.support.v4.widget.SimpleCursorAdapter; import android.view.View; import android.view.View.OnClickListener; import android.widget.AdapterView; import android.widget.AdapterView.OnItemClickListener; import android.widget.Button; import android.widget.ListView; public class MainActivity extends Activity { RegistrationAdapter adapter_ob; RegistrationOpenHelper helper_ob; SQLiteDatabase db_ob; ListView nameList; Button registerBtn; Cursor cursor; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); nameList = (ListView) findViewById(R.id.lv_name); registerBtn = (Button) findViewById(R.id.btn_register); adapter_ob = new RegistrationAdapter(this); String[] from = { helper_ob.FNAME, helper_ob.LNAME }; int[] to = { R.id.tv_fname, R.id.tv_lname }; cursor = adapter_ob.queryName(); SimpleCursorAdapter cursorAdapter = new SimpleCursorAdapter(this, R.layout.row, cursor, from, to); nameList.setAdapter(cursorAdapter); nameList.setOnItemClickListener(new OnItemClickListener() { @Override public void onItemClick(AdapterView arg0, View arg1, int arg2, long arg3) { // TODO Auto-generated method stub Bundle passdata = new Bundle(); Cursor listCursor = (Cursor) arg0.getItemAtPosition(arg2); int nameId = listCursor.getInt(listCursor .getColumnIndex(helper_ob.KEY_ID)); // Toast.makeText(getApplicationContext(), // Integer.toString(nameId), 500).show(); passdata.putInt("keyid", nameId); Intent passIntent = new Intent(MainActivity.this, EditActivity.class); passIntent.putExtras(passdata); startActivity(passIntent); } }); registerBtn.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub Intent registerIntent = new Intent(MainActivity.this, RegistrationActivity.class); startActivity(registerIntent); } }); } @Override public void onResume() { super.onResume(); cursor.requery(); } }
Main.xml is given below
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <ListView android:id="@+id/lv_name" android:layout_width="wrap_content" android:layout_height="wrap_content" > </ListView> <Button android:id="@+id/btn_register" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/register" /> </LinearLayout>
-->> for listView we need another layout t ospecify each Row of the LIstView
which is row.xml given below
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <TextView android:id="@+id/tv_fname" android:layout_width="wrap_content" android:layout_height="wrap_content" /> <TextView android:id="@+id/tv_lname" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="20dp" /> </LinearLayout>
4.To inserting data into database RegistrationActivity.java and register.xml is used which is given below
RegistrationActivity.java
package com.arun.registrationform; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; public class RegistrationActivity extends Activity { RegistrationAdapter adapter; RegistrationOpenHelper helper; EditText fnameEdit, lnameEdit; Button submitBtn, resetBtn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.register); fnameEdit = (EditText) findViewById(R.id.et_fname); lnameEdit = (EditText) findViewById(R.id.et_lname); submitBtn = (Button) findViewById(R.id.btn_submit); resetBtn = (Button) findViewById(R.id.btn_reset); adapter = new RegistrationAdapter(this); submitBtn.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub String fnameValue = fnameEdit.getText().toString(); String lnameValue = lnameEdit.getText().toString(); long val = adapter.insertDetails(fnameValue, lnameValue); // Toast.makeText(getApplicationContext(), Long.toString(val), // 300).show(); finish(); } }); resetBtn.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub fnameEdit.setText(""); lnameEdit.setText(""); } }); } }
register.xml
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="fill_parent" android:stretchColumns="1" > <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/fname" /> <EditText android:id="@+id/et_fname" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </TableRow> <TableRow android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/lname" /> <EditText android:id="@+id/et_lname" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </TableRow> <TableRow android:layout_width="wrap_content" android:layout_height="wrap_content" > <Button android:id="@+id/btn_submit" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/submit" /> <Button android:id="@+id/btn_reset" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/reset" /> </TableRow> </TableLayout>
5.For updating Database values EditActivity.java is used
package com.arun.registrationform; import android.app.Activity; import android.database.Cursor; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.EditText; public class EditActivity extends Activity { RegistrationAdapter regadapter; RegistrationOpenHelper openHelper; int rowId; Cursor c; String fNameValue, lNameValue; EditText fname, lname; Button editSubmit, btnDelete; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.editregister); fname = (EditText) findViewById(R.id.et_editfname); lname = (EditText) findViewById(R.id.et_editlname); editSubmit = (Button) findViewById(R.id.btn_update); btnDelete = (Button) findViewById(R.id.btn_delete); Bundle showData = getIntent().getExtras(); rowId = showData.getInt("keyid"); // Toast.makeText(getApplicationContext(), Integer.toString(rowId), // 500).show(); regadapter = new RegistrationAdapter(this); c = regadapter.queryAll(rowId); if (c.moveToFirst()) { do { fname.setText(c.getString(1)); lname.setText(c.getString(2)); } while (c.moveToNext()); } editSubmit.setOnClickListener(new OnClickListener() { @Override public void onClick(View arg0) { // TODO Auto-generated method stub regadapter.updateldetail(rowId, fname.getText().toString(), lname.getText().toString()); finish(); } }); btnDelete.setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // TODO Auto-generated method stub regadapter.deletOneRecord(rowId); finish(); } }); } }
editregister.xml is given below
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TableLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:stretchColumns="1" > <TableRow android:layout_width="fill_parent" android:layout_height="wrap_content" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/fname" /> <EditText android:id="@+id/et_editfname" android:layout_width="fill_parent" android:layout_height="wrap_content" > <requestFocus /> </EditText> </TableRow> <TableRow android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/fname" /> <EditText android:id="@+id/et_editlname" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </TableRow> </TableLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" > <Button android:id="@+id/btn_update" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="update" /> <Button android:id="@+id/btn_delete" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Delete" /> </LinearLayout> </LinearLayout>
Thank you. It saved my life.. XD
ReplyDeletegood to hear that
DeleteCan i get source code of this.
Deleteranjan.aashish12@gmail.com
Thanks
please send the source code to my mail....
DeleteChaituu599@gmail.com
tanQ
hey can i send me the source code.
Deletepbhati42@gmail.com
no u can't send urself a source code ....lol
Deletethanks so much, please could you give me the zip file of the source code.. ?
Deletesachin.rana42@gmail.com
thaaaaaanks so much, please could you give me the zip file of the source code.. ?
ReplyDeletesara.alhrbi@gmail.com
thanks in advance
please check your mail ....
Deletethanks *______*
Deleteplease can you send to me complete package in zip file in my email amanishaabani@gmail.com
DeleteThis comment has been removed by the author.
DeleteHey its a very nice and very much helpful to me, can you please send me a zip file to my id,
Deletesuthar.rajesh2687@gmail.com
hello can u plz snd me the zip file on jenareshmeebye@hotmail.com ..thnks
DeleteThank you very much. Really helpful to me. can u give me the source file of this project.
ReplyDeleteamila4d@gmail.com
Thank you.
please check your mail
Deletethank you very much.
Deletecan you send the source to
Deletehebbar.shravan@gmail.com ?
Really helpful to me. can u give me the source file of this project.
ReplyDeleteaquariuskm@gmail.com
Thank you.
ok i have sent it
DeleteI received it , thank you very MUCH XD
Deletevery helpful... can u please mail me source code of this project.
ReplyDeletesaini.deepu26@gmail.com
thank you so much
this project help me a lot,
ReplyDeletethank you for your work...
Thanks for sharing
ReplyDeleteThis comment has been removed by the author.
ReplyDeletei have sent it, please check
Deletethank you so much.
DeleteCan I get the source code too ? kavita.kamesh@gmail.com
ReplyDeleteThe strings.xml file is missing here. Can you send me the complete project at kavita.kamesh@gmail.com ? Thanks
Deletehey if you have the source code, could u send me 2
Deleteorhankanat89@gmail.com
Please send me zip file of this code email muleb777@gmail.com
Deleteplease can i get the source code too thanks in advance. nikalldway@gmail.com
ReplyDeleteThank you so much.....This is really useful (y) :D
ReplyDeletecan you please send me the complete source code
ReplyDeletenaim.imami@gmail.com
This comment has been removed by the author.
ReplyDeletehi arun ,
ReplyDeleteThankyou very much for giving your time to mail me the source code . U doing a gr8 job as hardly any one would take his time out to send his code to sme1 whome he does not know ,...thanks again
Nikhil
Can I get the source code too ?
ReplyDeleteshinigamiboy777@gmail.com
Can i get source code of it..its very nice project..
ReplyDeleteEmail-ID = ppv.vishal@gmail.com
Nice work.
ReplyDeleteCan u send me the source code?
Thank u very much!
iryna.raicu@gmail.com
thank you very much. Could you please send me the source code.
ReplyDeleteyour mail id ??
DeleteHi sorry but this is a matter of urgency for a final year project? could someone please email me this source code - when i typed it - it wouldnt work.... seriously need help to create a small SQL database
ReplyDeleteemail address niall_mcguigan@hotmail.com
Hey Really would be great to have the source code
ReplyDeletei couldnt manage the codes :S
orhankanat89@gmail.com
thank you for the tutorial. but, can u give me the source code. here my email.
ReplyDeletenadiahdaud@yahoo.com
thankss(:
hello very nice post can u mail me plzzzz
ReplyDeletek.rajesh966@gmail.com
this is so helpful. thnx. could u email the source code. azza.gjon21@gmail.com. thnx a lot. :)
ReplyDeletecan you please send me the complete source code..
ReplyDeletexboyz017@gmail.com
I would like the complete source code, too.
ReplyDeleteThank you in advance.
lagojohn3011@gmail.com
good one.
ReplyDeletepls send me zip file on virampurohit@gmail.com
can you please send me the complete source code as i have project to do within a week and i would much appreciated.
ReplyDeletealankhad@gmail.com
nice dude i like it........
ReplyDeleteplease could you give me the zip file of the source code.. ?
juber.android@gmail.com
good one.
ReplyDeletepls send me zip file on alphactc@gmail.com
Bijoy
Excellent Tutorial!
ReplyDeleteCan you also please send me the source code to greggp1987@hotmail.com
can u send the source code need it urgently
ReplyDeletegive me u r email id
DeleteThis comment has been removed by the author.
ReplyDeletehello, great tutorial! would be great if you could send the source code to me as well, thank you in advance :)
ReplyDeleteyour mail id ?
Deleteooops, I forgot.. it's:
Deletepioann *at* gmail com
thank you :)
This comment has been removed by the author.
DeleteGreat tutorial ,
ReplyDeletePlease can i have the source code
here is my email :
georges.j.adam@hotmail.com
I need it urgently :)
Good one!
ReplyDeleteThanks for the tutorial.
Plz mail me source code......to .....mail2lakshman143@gmail.com
ReplyDeleteThank you in advance
This comment has been removed by the author.
ReplyDeleteThe example is so simple to understand and wonderful arun...But i have one query, When i add new record, at a time if i put both edittext blank and submit it. the blank record is saved and it is display as blank in listview. So my question is, "How to prevent to get null record when i click on submit button And also when edit the current record?"
ReplyDeleteit is a very helpful tutorial. can u send me the source code please.
ReplyDeletemy id : zee_nom@yahoo.com
Thanks for the tutorial. Please send me your soure code to mail: tvanluu1990@gmail.com
ReplyDeletei just try this one and have lot of error on listing program,,, can i get the source code email me to : goinspiration90@gmail.com
ReplyDeletethankyou before
It helped me alot. Thank you. Could you send me the source code please?
ReplyDeletemy id : kingstamp@naver.com
Thank you again.:)
Really helpful to me. can u give me the source file of this project.
ReplyDeletephat.maitan@gmail.com
Thank you.
thaaaaaanks so much, please could you give me the zip file of the source code.. ?
ReplyDeletealn799a@hotmail.com
Thanks...
ReplyDeletePlease can u send me the code?
your email id?
DeleteCan you send me the source code? erhan5229@gmail.com
ReplyDeleteplz cn u snd me zip.
ReplyDeletesuresh.jai137@gmail.com
Regards
suresh
HI Arun Can u send me the source code
ReplyDeleteMy Id:vadlaraghunandan@gmail.com.
Thanks in advance.
Thanks...
ReplyDeletePlease can u send me the code?
mr.barkouka@gmail.com
please email the zip code to shalindrar@gmail.com
ReplyDeletecould you send me the code too?
ReplyDeletenitzan2611@gmail.com
thanks!
Hi, could you send me the code? This will be bery important for me.
ReplyDeletericardomiranda180775@gmail.com
Thank you a lot.
Ricardo Miranda
can u please send the source code of this to darshan.katari@gmail.com
ReplyDeleteThis comment has been removed by the author.
ReplyDeletePor favor me prodrias enviar el Código fuente de Este tutorial a este email qry25live@gmail.com Te antemano Muchas gracia ...
DeleteGraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatest help
ReplyDeleteMay I have Source Code in Zip please
Hafiz.Chauhan@yahoo.com
Hey its a very nice and very much helpful to me, can you please send me a zip file to my id,
ReplyDeletesuthar.rajesh2687@gmail.com
Thank you very much. Really helpful to me. can u give me the source file of this project.
ReplyDeleteanitha.n2211@gmail.com
thank you for this example. send me source code please.
ReplyDeleteantonanton08@gmail.com
Thank you indeed!! Could you possibly send me source code?
ReplyDeletelivefriendie@gmail.com
Can You please provide source code of it..
ReplyDeletemanish.burade89@gmail.com
Can you please share source code of it akash.karrii@gmail.com
ReplyDeleteThank you so much!! Could you possibly send me source code?
ReplyDeletejedypunk@hotmail.com this is great...
Could you please send me the source code?
ReplyDeletegiraffe234623@gmail.com
plz send me this Source code.......
ReplyDeleterjkarmaker@gmail.com
could you please send me the zip file of this project....
ReplyDeletegetanoopwayanad@gmail.com
thank.please sent full project in my mail.
ReplyDeleteshohel925@gmail.com
Thank you so much for this!
ReplyDeleteCan you please send the source files to me aswell!
gillaninc@gmail.com
hi can u pls send the source file in zip folder.... pls
ReplyDeletemail id : makstufftechnologies@gmail.com
Hi can u send the full source code in my mail : hnadim4@gmail.com
ReplyDeleteThank you in advance
hi i need help pls send me source code, thns now
ReplyDeletedorukatak@gmail.com
Hi,do you know why the setOnItemClickListener didn't fire?
ReplyDeleteHi can u send me the full source code in my mail : kavicoolzone@gmail.com
ReplyDeleteThank you in advance
Hi can you please save my life by sending me the source code in the address below carloune1@gmail.com
ReplyDeletethx in advanced
Many thanks Arun.
Deletehi can you send me source code m.pizner@gmail.com
ReplyDeletethank you
Hey Can you please attach project zip here.
ReplyDeleteHi , can you send me sourecode vukynamkhtn@gmail.com . thanks very much !
ReplyDeletehey can u send me the zip code @ my ID
ReplyDeleteprajeshgohil@gmail.com...plz thanx a lot.................................
Can you please send me zip file of the code?
ReplyDeletemy id is sender983@gmail.com.
thanks
Can you please send me zip file of the code?
ReplyDeletemy id is snita.rayamajhi@gmail.com.
thanks
Can you please send me zip file of the code?
ReplyDeletemy id is maricarsanoy@gmail.com thank you and GODBLESS u ;)
Hi could you send me the source code to matbrookes67@gmail.com
ReplyDeleteThanks appreciated !!
thanks so much, please could you give me the zip file of the source code ?
ReplyDeleteazwardy1990@gmail.com
I need it urgently :)
would u give the source code, please.
ReplyDeleteal.noman.uap@gmaill.com
Hi could you send me the source code
ReplyDeleteThanks !
to m.djalal8500@gmail.com
DeleteHello
ReplyDeleteGreat tuto. Maybe you should add the code for the manifest.
If you can send me too the zip, I will appreciate.
Thank you
stephane-alger@orange.fr
Hi, Thanks for the good tutorial. Can you please send the source code to shyam.juluru@gmail.com.
ReplyDeleteThanks in advance.
Shyam
Hi Could you send the full zip file??
ReplyDeleteThanks in Advance
yewrajesh@ymail.com
Source code plz at
ReplyDeleteprinceasif1104@gmail.com
hey can you send me the whole code? thanks in advance.
ReplyDeleteruben_pavao@hotmail.com
Really great app!
ReplyDeleteI would really appreciate if you could send me the source code :)
megalozwo@outlook.com
Send me the source code plzzz mandar.pawar27@gmail.com
ReplyDeleteThis comment has been removed by the author.
ReplyDeletePlease send me a source code on dheerajmarda@gmail.com !!!
ReplyDeleteThanks in advance .
Take Care
thanks a lot for putting this up...
ReplyDeletecould you please send me the source code?
samuelkoshie@gmail.com
Thanks a ton!!
hello thanks for this tutorial, may you send the source code please?
ReplyDeletemekni.ramos08@gmail.com
can you plz send the source code.. ashifa.harini@gmail.com
ReplyDeletecould u please send me the source code? pls......
ReplyDeletepraba.star007@gmail.com
Could I have the sourcecode please :)
ReplyDeletescubalama@gmail.com
could u please send me the source code
ReplyDeletediogolopeseos@gmail.com
could u please send me the source code
ReplyDeleteThank you very much.
draganastek68@gmail.com
This comment has been removed by the author.
ReplyDeletecould u please send me the source code
ReplyDeleterizmeb@gmail.com
Can you please send me zip file of the code?
ReplyDeletemy id is pacocable@hotmail.com
Thanks you very much
Can you give me this code>
ReplyDeletethis is my email
Deletebryan_cruz321@yahoo.com
thanks
please sent me the source code
ReplyDeletethis is my mailid killivino@gmai.com
could u please send me the source code
ReplyDeleteThank you very much.
arief.ilkom@gmail.com
Pls send me the source code
ReplyDeletesheshikanth.s@gmail.com
This comment has been removed by the author.
ReplyDeleteAdd this code to your manifest or else exception will occur
ReplyDelete< activity android:name="com.example.sqlitepluslistview.RegistrationActivity" >< /activity >
< activity android:name="com.example.sqlitepluslistview.EditActivity" >< /activity >
could you please send me the source code for this it seems to be helpful for me
ReplyDeletemail id:manikrishna.kurra@gmail.com
thanks in advance
hey plz mail me whole project...sravanipractice@gmail.com
ReplyDeletethanx
can i get the source code in zip file
ReplyDeleteto this id
smart4android4@gmail.com
thank u
Can you please share the complete project zip file to srinukulkarni@gmail.com.
ReplyDeleteMany Thanks :)
thanks,it's very helpful, can you mail me the zip code of this example
ReplyDeletetahira.rana@yahoo.com
Its very helpful for my project can you mail me the zip code of this example jendeil11@gmail.com
ReplyDeleteplease can i get the source code too thanks in advance,
ReplyDeleteid:shitole.sandip@gmail.com
Great example. Please could you send me the source code.
ReplyDeleteid: craigscopy@gmail.com
Hi can u send the full source code in my mail : sharmaabhilasha33@gmail.com
ReplyDeleteThank you in advance
Great example. Please could you send me the source code.
ReplyDeleteid: saratencreddy@gmail.com
pls send me source code.....
ReplyDeletemanojjadhav2191@gmail.com
I am using SOAP web services calling Soap method GetVehicle and showing it in Textview as an Json array then Save the data in Sqlite database Table Vehicle , now I want to populate Name column of the Vehicle table from SQLite database into ListView.
ReplyDeleteI have searched a lot of examples but all are showin an user defined array items in listview, but not any example which is using Name column of Table from sqlite into ListView.
Plz do help me by contributing in my code or any sample code r examples.
my id is : sagarasad125@gmail.com
Deletemy id is : sagarasad125@gmail.com
ReplyDeletePls send me the source code :nakuludu123@gmail.com
ReplyDeleteThanks for helpful tutorial.
ReplyDeletePlease send me source code.
omarfaruk334@gmail.com
muchas gracias lo estaba buscando hace mucho tiempo :) :) :)
ReplyDeleteplease send source code to my id: ffazzin@gmail.com
ReplyDeleteWhat is the app used to develop this?
ReplyDeleteplz mail d src code on ujwala1710@gmail.com, thnx.
ReplyDeletearpitpatel009@gmail.com
ReplyDeletepls send d souce code to sudhakar120693@gmail.com
ReplyDeleteIts awesome...can u please send me the source code...it will be very useful for me
ReplyDeletevarun.praveen16@gmail.com
Thanks in advance
Hey can you please send me the source code to my emai otin666@gmail thank you!!
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteCome learn build Android application here Blog Android Tutorial
ReplyDeletei want to add another value. how can i add it
ReplyDeletePlease can i get the source code?
ReplyDeletetishajoshi83@gmail.com
Thank u very much
ReplyDeletehttps://www.facebook.com/puzel
hii,plz give me soure code of listview with sqlite in which ADD,DELETE all operations performes..
ReplyDeletethanks in advance
This comment has been removed by the author.
ReplyDeletepls send me u r code
ReplyDeleteCan I have the source code please? Thanks in advance!
ReplyDeleteMail it to me at preetanjali08@gmail.com
Great tutorial ,
ReplyDeletePlease can i have the source code
here is my email :
rahmiputri12@gmail.com
I need it urgently :)
Great tutorial ,
ReplyDeletePlease can i have the source code
here is my email :
rahmiputri12@gmail.com
I need it urgently :)
Can you please send source code?
ReplyDeletemy mail id is purushnareshcse510@gmail.com
Great tutorials. Pls send me your source code. stealthsolarenergy@gmail.com
ReplyDeleteThanks.
i need zip file of source code pls mail me is,,thanks,
ReplyDeletedeepali.bajare26@gmail.com
i want to how to get data from database in next activity... plz guide me
ReplyDeleterohitjain516@gmail.com
This comment has been removed by the author.
ReplyDeletecan you send me the source code please for my thesis thank you a lot ^_^
ReplyDeletei got an error to all string in all xmls how i resolve this ? thanks for reply BTW your source code, i can't open it i think the files is
ReplyDeleteinadequate.
can you send me the source code please for my thesis thank you a lot ^_^
ReplyDeletei got so many errors ehh. :(
aranetarjay@yahoo.com.ph thank you po ^_^
give me the source code pls my mail id is lawaniyatarun@gmail.com
ReplyDeletenice blog
ReplyDeletewatch Simple SQLite CRUD Operation in Android.
ReplyDeletehttp://blog.e-logicsense.com/android-sqlite-database-crud-operation
watch SQLite Database CRUD Operation in Android
ReplyDeletehttp://blog.e-logicsense.com/android-sqlite-database-crud-operation/
watch creating one databse for student record creating a table named studentrecord.
ReplyDeletehttp://blog.e-logicsense.com/android-sqlite-database-crud-operation/
Sir, i had tried the same code for demo, while running it gets automatically stop. Help me please...I am new to android. Thanks in advance.
ReplyDeleteCan you please send source code?
ReplyDeletesutharbhanwar96@gmaill.com
thnx
ReplyDeletehi can you send me source code anisbegitu@gmail.com
ReplyDeletethank you
please can you give mee source code of this tutorial
ReplyDeletejennychristian@outlook.com