不知道爲什麼得到錯誤的參數異常崩潰的android代碼。 任何幫助將不勝感激....爲什麼非法的參數異常?
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView tv=(TextView)findViewById(R.id.test_id); tv.append("\n");
Uri u=Uri.parse("content://sms/inbox");
try{
Toast.makeText(this, getContentResolver().delete(u, "_id like ?", new String[]{"2"})+"", Toast.LENGTH_LONG).show();
}catch(Exception e){
Toast.makeText(this, e.toString(), Toast.LENGTH_LONG).show();
}
}
我們可以有堆棧跟蹤嗎?這將非常有幫助。 – michaelb958 2013-05-08 01:22:09