Pessoal, estou usando um JSONArray pra pegar dados do BD, que está na web...
Preciso pegar uma Imagem (BLOB) do BD... O campo que ela está chama "foto"...for (int i = 0; i < jArray.length(); i++) {
JSONObject json_data = jArray.getJSONObject(i);
String estrelas = json_data.getString("estrelas");
txtestrelas.setText(estrelas);
String foto = json_data.getString("foto"); //AKi, eu consigo pegar a Imagem BLOB....
}
Então preciso transformar a String foto em um Bitmap..
Como faço isso?