摘要:
android会把短信信息保存在数据库中,可查看/dbdata/databases/com.android.providers.telephony/mmssms.db。但是我们不能直接访问数据库,只能通过ContentProvider来访问它。以下是访问短信数据库的uricontent://sms/ 所有短信content://sms/inbox 收件箱content://sms/sent 已发送content://sms/draft 草稿content://sms/outbox 发件箱content://sms/failed 发送失败content://sms/queued 待发送列表And 阅读全文
摘要:
如果想同时隐藏标题栏和通知栏的话:方法1、在manifest里面的activity加 android:theme="@android:style/Theme.NoTitleBar.Fullscreen"方法2、 在activity的onCreate方法写入以下代码:this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FL 阅读全文