Back to project page Twitter-Android.
The source code is released under:
Apache License
If you think the Android project Twitter-Android 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 info.mahmoudhossam.twitter; /* w w w . j a va 2s . c o m*/ import android.content.Context; import com.commonsware.cwac.endless.EndlessAdapter; class MyEndlessAdapter extends EndlessAdapter { Context ctx; TweetAdapter adapter; MyEndlessAdapter(Context ctx, TweetAdapter adapter, int ResourceID) { super(ctx, adapter, ResourceID); this.ctx = ctx; this.adapter = adapter; } @Override protected boolean cacheInBackground() throws Exception { return false; } @Override protected void appendCachedData() { } }