tags:

views:

44

answers:

2

Any one have idea about

  1. android.net.http.EventHandler;
  2. android.net.http.Headers;
  3. android.net.http.RequestQueue;

I m trying to build an Android Twitter Integration app. I m not getting this package classes.

A: 

Those classes are not actually part of the Android SDK - looks to me like they're custom.

xil3
thanx for reply ..do u have any refrence link regarding these file from where i can get info.
Shubh
A: 

You do not need those classes to build a Twitter app for Android. They are not needed for HttpClient or the older HttpUrlConnection. There are multiple JARs (JTwitter, Twitter4J) that work on Android and do not need these classes.

All that being said, those classes reside in the Android source code.

CommonsWare