readline!= null のスレッド内で setText() メソッドを使用してメッセージを投稿したいのですが、エラーが見つかりました。トーストを表示して setText() メソッドを使用できません。
public void run(){
Looper.myLooper();
Looper.prepare();
try {
while(!((line = in.readLine()).equalsIgnoreCase("quit"))){
if(line.isEmpty()){
System.out.println("there is no message");
}else{
Toast.makeText(this, "Message= " + line , Toast.LENGTH_SHORT).show();
msgbox.setText(line);
}
}
} catch (IOException e) {
e.printStackTrace();
System.out.println("Gagal mengirim ACK ke server");
}
}