我有JSON不斷變化,我需要在Android中不斷更新更改,我該如何做到這一點?繼續更新Android中的新JSON
我的Android代碼
r = getImage();
JSONObject data = new JSONObject(r);
String a = data.getString("name");
Toast.makeText(getApplicationContext(),a, Toast.LENGTH_SHORT).show();//This prints the name
所以在這個代碼我有它的onCreate所以它會執行一次,我在哪裏開始,使它自動更新?