Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 android 的新手,我想知道我们可以在 ProgressUpdate(Integer... values) 的这个方法中将字符串作为参数传递
您可以onProgressUpdate()与任何引用类型一起使用,因为您需要将其指定String为 中的进度类型AsyncTask,例如:
onProgressUpdate()
String
AsyncTask
public class DownloadTask extends AsyncTask<String, String, Bitmap>
您可能知道,第一个泛型参数 inAsyncTask用于输入参数的类型,第二个用于进度,最后一个指示结果的类型。希望这可以帮助。