ya_zhang

Results 1 comments of ya_zhang

不能直接更新,更新方式有三种 1、 ` new Handler(mContext.getMainLooper()).post(new Runnable() { @Override public void run() { mTextView.setText("update text not in UI Thread"); } });` 2、 `((Activity) context).runOnUiThread(new Runnable() { @Override public void run() {...