textView.setText()
因为传进去的参数需要是 String 类型,如果传进去的是 int 类型,则会出错,会导致 app 闪退。
解决办法:textView.setText(msg.arg1+“”)
textView.setText(msg.arg1+“”)