I made a project(BlogReader) using Volley library. If I encode json file in UTF-8 and reload my AndroidStudio Emulator the list view become white(white blank with menu header) . If I change json encode again on ANSI or win-1251 It starts to works. I changed Android File Encoding Settings on UTF-8, but nothing changed. How fix this problem?
PS. Sorry, can't load screenshot, very low reputation(
Assuming that this is an http request then the first way is to encode the server's response with UTF-8. The implementation depends on the type of server.
But if you want to enforce UTF-8 encoding in all responses then you need to override a request
parseNetworkResponse
. For example this code below is for StringRequest:To display the strings in UTF8 encoding Cyrillic, it helped me a lot: