I got problem with data server get a xml data with this: "?xml version="1.0" encoding="UTF-8" standalone="yes"?" and string can't show me special chars ( paź ), how can i fix it? I tried to change the encoding on UTF-8 and UTF-16 but didn't work or my way was bad. Any idea?
public boolean loadDataFromRest( Context context){
String szUrl = "http://host";
alertDialogBuilder = new AlertDialog.Builder( context );
StringRequest stringRequest = new StringRequest( Request.Method.GET, szUrl,
new Response.Listener<String>() {
@Override
public void onResponse(String szResponse) {
Log.d("DEBUG ", szResponse);
}