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()指定する必要があるため、任意の参照タイプで使用できます。次に例を示します。StringAsyncTask
onProgressUpdate()
String
AsyncTask
public class DownloadTask extends AsyncTask<String, String, Bitmap>
おそらくご存知のとおり、最初の一般的な引数AsyncTaskは入力パラメーターの型に使用され、2 番目は進行状況に使用され、最後の 1 つは結果がどの型になるかを示します。お役に立てれば。