I am a newbie on android development. I want to know that when i try to remove errors, a line appears in my code, that is:
@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();
}
}
I want to know that what @SuppressLint({}) line of code means and why this happens? and how to overcome with this problem?