Provided by--appcompatactivity

Source: Internet
Author: User

public class Mainactivity extends Appcompatactivity {

@Override
protected void OnCreate (Bundle savedinstancestate) {
Super.oncreate (savedinstancestate);
Setcontentview (R.layout.activity_main);
}
public void Onclick_bak (view view) throws IOException {
Content://sms Search new system all SMS URI
Uri uri=uri.parse ("content://sms");
Get access to content providers
Contentresolver Contentresolver=getcontentresolver ();
Querying data with Contentresolver
Cursor cursor=contentresolver.query (uri,new string[]{"Address", "date", "type", "Body"},null,null,null);
List<smsinfo> smsinfolist=new arraylist<smsinfo> ();
Cursor.movetonext () moves to the next line
while (Cursor.movetonext ()) {
String address=cursor.getstring (0);
Long Date=cursor.getlong (1);
int Type=cursor.gettype (2);
String body=cursor.getstring (3);
Smsinfo smsinfo=new Smsinfo (date,type,body,address);
Smsinfolist.add (Smsinfo);
}
End of Read data
Cursor.close ();
Backup
Smsutils.backupsms (Smsinfolist,this);
}

}

Provider--appcompatactivity

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.