Am using android latest version sdk with 4.1 version emulator in eclipse (Helios)
. Every thing is working fine. But in my logcat
for each run of any application am getting following statement.
I/Choreographer(1250): Skipped 1001 frames! The application may be doing too much work on its main thread.
Even in Hello world application, am getting the same logcat output. I am not using multi threads in my applications. Can some one please tell the reason why am getting these logs in my logcat.
Here is my code
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_jsonparsing);
_mContext = this;
lv = (ListView) findViewById(R.id.listview);
new JSONParserTask().execute();
}
In my async Task am getting JSONArray from server, parsing it and listing out.