Отображение PDF-документа в приложении android
У меня есть.net web service который возвращает PDF файл как
byte[]
[WebMethod] public byte[] GetFile(string filename) { BinaryReader binReader = new BinaryReader(File.Open(Server.MapPath(filename), FileMode.Open, FileAccess.Read)); binReader.BaseStream.Position = 0; byte[] binFile = binReader.ReadBytes(Convert.ToInt32(binReader.BaseStream.Length)); binReader.Close(); return binFile; }
Я знаю, как вызвать веб-сервис с android. мой вопрос заключается в том, как отобразить этот байт[] в формате PDF в приложении android?