Как в методы pre/postExecute передать вью, в которую я хочу вывести результаты до и после начала выполнения потока? Или класс наследуемый AsyncTask должен быть обязательно вложенным в Активити?
class MyTask():AsyncTask<Void,Void,Void>() {
override fun doInBackground(vararg params: Void?): Void {
TODO("Not yet implemented")
}
override fun onProgressUpdate(vararg values: Void?) {
super.onProgressUpdate(*values)
}
override fun equals(other: Any?): Boolean {
return super.equals(other)
}
override fun onPostExecute(result: Void?) {
super.onPostExecute(result)
}
override fun onCancelled(result: Void?) {
super.onCancelled(result)
}
override fun onCancelled() {
super.onCancelled()
}
override fun onPreExecute() {
super.onPreExecute()
}
override fun hashCode(): Int {
return javaClass.hashCode()
}
}