public class Thread2 implements Runnable{
@Override
public void run() {
synchronized(this){
Log.d("TAG","into Thread2 runnable");
Intent in=new Intent(MyService.this,Display.class);
in.putExtra("Integer", 1234);
in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(in);
}
在将静态数据发送到意图之前,需要停止服务......怎么办?提前致谢