在listview中显示webservice(SOAP)中的图像

时间:2015-03-16 08:05:11

标签: android web-services soap c#-3.0

我需要在我的Android应用程序中从webservice访问Image。我写了webservice,它将图像转换为字符串。现在我需要在Listview中访问该图像。我需要在android中访问哪种格式。 请做好 谢谢。

1 个答案:

答案 0 :(得分:0)

然后用base64库解码它。用原始肥皂获得你的肥皂结果

SoapPrimitive  resultsRequestSOAP = (SoapPrimitive) envelope.getResponse();
String result = resultsRequestSOAP.toString();
if (result != "") {
  byte[] bloc = Base64.decode(result, Base64.DEFAULT);         
  Bitmap bmp = BitmapFactory.decodeByteArray(bloc,0,bloc.length);
}