I'm implementing a SearchTimeline in android using the TwitterUI kit, Its working fine except I couldn't find a way to handle Timeout error or no connection error thrown when loading more tweets. Any idea how to handle these exceptions?
Asked
Active
Viewed 63 times
1 Answers
1
Searching in TimelineDelegate.java, you can see there is no CallBack set with PreviousCallback.
Unfortunately...
Maybe you could clone their git and modify this.

michgauz
- 214
- 2
- 10
-
In the end this is exactly what I did, I downloaded the library and did some customizations so that it uses a recycler view instead of listview and did a success and error callback on the timeline, and also a custom view for tweets. Thanks! – Malek Hijazi Dec 23 '15 at 14:46