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.Loaders; /*from w ww .j a v a2 s . co m*/ import android.content.Context; import com.example.Twitter_Android.Logic.Person; import com.example.Twitter_Android.Net.Connector; import org.json.simple.parser.ParseException; import java.util.ArrayList; import java.util.List; public class Task_LoadSearchedUsers extends TweetLoader<Person> { private final String toFind; public Task_LoadSearchedUsers(Context context, String query) { super(context); toFind = query; } @Override public List<Person> loadInBackground() { final Connector connector = new Connector(); List<Person> loadedTweets = new ArrayList<>(); try { loadedTweets = connector.findUsers(toFind, RESULT_COUNT); } catch (ParseException e) { e.printStackTrace(); } setLoadedTweets(loadedTweets); return loadedTweets; } }