I would like to pass a single string into an asynctask. Could anyone show me how it is done? my getEntity needs The method getEntity(Activity, String, EntityGetListener) but I k
You already have this
new RemoteDataTask().execute(pass); // assuming pass is a string
In doInbackground
@Override
protected Long doInBackground(String... params) {
String s = params[0]; // here's youre string
... //rest of the code.
}
You can find more info @
http://developer.android.com/reference/android/os/AsyncTask.html