我是android开发的新手。我想知道,当我尝试删除错误时,我的代码中会出现一行,即:
@SuppressLint({ "ParserError", "ParserError", "ParserError", "ParserError", "ParserError", "ParserError", "ParserError", "ParserError", "ParserError" }) @Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
Thread timer = new Thread(){
@SuppressLint("ParserError") public void run(){
try{
sleep(5000);
}
catch(InterruptedException e){
e.printStackTrace();
}
finally{
Intent intent = new Intent("com.example.basiccounter.COUNTER");
startActivity(intent);
}
}
};
timer.start();
}
}
我想知道 @SuppressLint({}) 代码行的含义以及为什么会这样?以及如何克服这个问题?