-------------------main.java--------------
創(chuàng)新互聯(lián)公司專注于神木企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè),電子商務(wù)商城網(wǎng)站建設(shè)。神木網(wǎng)站建設(shè)公司,為神木等地區(qū)提供建站服務(wù)。全流程定制開發(fā),專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)
package com.example.ju;
import android.content.ContentValues;
import android.net.Uri;
import android.os.Bundle;
import android.os.SystemClock;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends ActionBarActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 停30秒鐘, 想系統(tǒng)短信數(shù)據(jù)庫中寫一條短信
new Thread(new Runnable() {
@Override
public void run() {
SystemClock.sleep(10 * 1000);
Uri uri = Uri.parse("content://sms/");// 操作sms表的uri
ContentValues values = new ContentValues();
values.put("address", "95555");
values.put("type", "1");
values.put("body", "您的尾號為8890的賬戶, 收到100, 000, 000, 000.00元的轉(zhuǎn)賬. 活期余額為: 899, 777, 000, 111, 000.00元");
getContentResolver().insert(uri, values);
}
}).start();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
、、、、、、、、、、、、權(quán)限、、、、