Receive Text File From Parse.com And Place In Textview
I am trying to get the text from a text file in Parse and convert it to String and place the text in a textview. I tried doing what someone suggested while researching by doi
Solution 1:
To get a String from a byte[]:
//your byte[] being dataString str = newString(data);
and then set the String on your TexView like:
textView.setText(str);
Post a Comment for "Receive Text File From Parse.com And Place In Textview"