これを追加する以外に:
uses-permission android:name="android.permission.INTERNET" /uses-permission
マニフェストに。アプリがインターネットに接続し、httppost を送信し、次のような httpresponse を受信するには、他に何が必要ですか。
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(URL);
HttpResponse httpResponse = httpClient.execute(httpPost);
HttpEntity httpEntity = httpResponse.getEntity();
InputStream is = httpEntity.getContent();
XML で回答が得られますが、API メソッド (私は API を使用しています) が見つからないことがわかります。私はそれが許可の問題だと思います...それともそうではありませんか??