How do i use a variable outside the onResponse in Android?
I have created an activity in which i insert some records into a mysql database. I declared a global variable named lastInsertId . When i try to println the variable inside the onResponse method, works fine but when i try to println outside the method returns null . I need to use this variable also outside the method. What can be done? Here is my code: String insertUrl = "http://localhost/file.php"; String lastInsertId; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); RequestQueue requestQueue = Volley.newRequestQueue(getApplicationContext());