本文主要是介绍android Mms 数据项分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
这篇文档介绍的很详细:
http://wenku.baidu.com/view/043568a8dd3383c4bb4cd25b.html
/*** This table maps the first instance seen of any particular* MMS/SMS address to an ID, which is then used as its* canonical representation. If the same address or an* equivalent address (as determined by our Sqlite* PHONE_NUMBERS_EQUAL extension) is seen later, this same ID* will be used. The _id is created with AUTOINCREMENT so it* will never be reused again if a recipient is deleted.*/db.execSQL("CREATE TABLE canonical_addresses (" +"_id INTEGER PRIMARY KEY AUTOINCREMENT," +"address TEXT);");
这篇关于android Mms 数据项分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!