cookieは常にnullを返します。
android 2.xではこれはうまく機能しますが、4.0.4ICSは機能しません
ConnectivityManager manager = (ConnectivityManager) mContext
.getSystemService(Context.CONNECTIVITY_SERVICE);
CookieManager cookie = CookieManager.getInstance();
if(cookie.getCookie(mContext.getString(R.string.host_url))!=null){
conn.setRequestProperty("Cookie", cookie.getCookie(mContext.getString(R.string.host_url)));
Log.d("tag", "cookie get " + cookie.getCookie(mContext.getString(R.string.host_url)));
}
このコードでは、cookie.getCookie()は常にnullを返します。
*HttpUrlConnectionでこのコードを使用する