Мне нужно что-то вроде этого .. Строковые параметры и контекст одновременно ..
protected String doInBackground(String... strings, Context ctx) { this.dhn = new DataHelper(ctx); this.dhn.Yaz(strings[0]); }
Я только что сделал это;
protected String doInBackground(Object... arguments) { this.dhn = new DataHelper((Context) arguments[0]); }