1. 程式人生 > >android UI TextView setText顯示伺服器返回資料

android UI TextView setText顯示伺服器返回資料


handler.post(new Runnable() {
String txtString = null;
String message = null;

public void run() {
try {
message = jsonObject.getString("msg");
int phynum = jsonObject.getInt("phy");
int phytime = jsonObject.getInt("phytime");
physicalView.setText(String.valueOf(phynum));//獲取json裡的資料並顯示
timeView.setText(String.valueOf(phytime));//獲取json裡的資料並顯示