the following is a part of my android java code, I am getting the error "Cannot instantiate the type HttpConnection"
import org.apache.http.HttpConnection;
import android.app.Activity;
import android.app.AlertDialog;
public class MainActivity_test extends Activity
{
int resultcode,flag;
public static final int DIALOG_LOADING_PROGRESS = 0;
HttpConnection con;
con = new HttpConnection();
.
.
.
}