Possible Duplicate:
How to use my own sqlite database?
Full Android Database Helper class for existing SQLite database?
I am new to android, i have created database using sqlite database browser now i want to use this database in my application so what are the step to do so any example code or any help will be appriciated
Follow the instructions from this blog
It will walk you through all the steps you need to use to get a pre-created db into your app.
EDIT
You didn’t mention that your db was large in the initial post. In that case you might want to try android-sqlite-asset-helper
I don’t see where it says it, but I know I’ve seen Mark from CommonsWare comment that it will transfer any size file for you. You zip up the db, put it in your assets/databases folder, and follow their directions to code your db class and you should be good to go.