android Programming Glossary: filterx
AsyncTask, must it take such a performance penalty hit…? http://stackoverflow.com/questions/8955458/asynctask-must-it-take-such-a-performance-penalty-hit SLOW Takes 30 seconds at default thread priority with MAX_PRIORITY 15 seconds AsyncTask Void String String fx new FilterX url view this fx.execute running as AsyncTask takes roughly ten times longer than just plain load Use these when not running.. takes roughly ten times longer than just plain load Use these when not running as AsyncTask FAST takes ~5 seconds FilterX fx new FilterX url view this fx.onPreExecute final String str fx.doInBackground fx.onPostExecute str class FilterX extends.. ten times longer than just plain load Use these when not running as AsyncTask FAST takes ~5 seconds FilterX fx new FilterX url view this fx.onPreExecute final String str fx.doInBackground fx.onPostExecute str class FilterX extends AsyncTask Void..
|