Aufrufmethode in Android
Ich versuche eine von mir geschriebene Methode aufzurufen. Es kompiliert bis auf eine Zeile ...
public class http extends Activity {
httpMethod(); //will not compile
public void httpMethod(){
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://site/api/");
try {
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
String test = "hello";
TextView myTextView = (TextView) findViewById(R.id.myTextView);
myTextView.setText(test);
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
} catch (IOException e) {
// TODO Auto-generated catch block
}
}
}
Ich bin nicht der beste Java-Typ, aber ich würde denken, dass das Aufrufen der Methode so eine Antwort bekommen würde. "Hallo" wird jedoch nicht angezeigt ...
Wie rufe ich die Methode richtig auf?