Back to project page Test-SimpleTwitterClient.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project Test-SimpleTwitterClient listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.Twitter_Android.AsynkTasks; /*from www. j ava 2 s .c o m*/ import android.os.AsyncTask; import com.example.Twitter_Android.Net.Connector; public class TaskFollow extends AsyncTask<Long, Void, Void> { @Override protected Void doInBackground(Long... params) { if (params.length > 0) { final Connector connector = new Connector(); connector.follow(params[0]); } return null; } }