I am trying to call a method I have written. It compiles except for one line...
public class http extends Activity { httpMethod(); //will not compile
httpMethod();
should be inside some other method/constructor (or) assigned to variable. I suspect your requirement might be calling calling httpMethod() in either onCreate() (or) onResume() because you are extending Activity.
httpMethod()
onCreate()
onResume()