Makoto,
Since I am at this thread, I'll post this here as a suggestion for
improvement:
there are often cases when I tap on a video to play and for a good
amount of seconds nothing seem to happen... I think it happens mostly
when there is trouble with the network connection.
Could you add perhaps some some of those "Toast" notifications telling
what's happening in the background? E.g. "Connecting to vimeo...",
etc.
Cheers in advance.
> It was a result of me using the generic HttpClient class throughout,
> even though I may be instantiating an instance of the
> AndroidHttpClient if the device's SDK supports it (Froyo and newer).
> For older devices, I use the DefaultHttpClient.
>
> One thing about using the AndroidHttpClient is that you have to
> explicitly close() the client to release resources which I wasn't
> doing. I added a check to see if client is an instance of
> AndroidHttpClient, and if so, close() it.
>
> Here's the documentation on it if anybody is curious:
http://developer.android.com/reference/android/net/http/AndroidHttpCl...()