I'm a newbie in android ecosystem and all but I have a rather strange problem. my application uses android bluetooth chat sample to send some data to computer at a fixed rate via bluetooth. Below is the runnable code in my TimerTask:
mCommandService.write(START_PACKET);
if(backgroundProcess.getMAngles(1)>ANGLE_LIMIT)mCommandService.write(intToByteArray(ANGLE_LIMIT));
else if(backgroundProcess.getMAngles(1)<-ANGLE_LIMIT)mCommandService.write(intToByteArray(-ANGLE_LIMIT));
else mCommandService.write(intToByteArray((int)backgroundProcess.getMAngles(1)));
if(backgroundProcess.getMAngles(2)>ANGLE_LIMIT)mCommandService.write(intToByteArray(ANGLE_LIMIT));
else if(backgroundProcess.getMAngles(2)<-ANGLE_LIMIT)mCommandService.write(intToByteArray(-ANGLE_LIMIT));
else mCommandService.write(intToByteArray((int)backgroundProcess.getMAngles(2)));
if(backgroundProcess.getMAngles(0)>ANGLE_LIMIT)mCommandService.write(intToByteArray(ANGLE_LIMIT));
else if(backgroundProcess.getMAngles(0)<-ANGLE_LIMIT)mCommandService.write(intToByteArray(-ANGLE_LIMIT));
else mCommandService.write(intToByteArray((int)backgroundProcess.getMAngles(0)));
mCommandService.write(END_PACKET);
The "write" method is exactly as it was defined in android bluetoothchat sample. This code works perfectly fine on my Galaxy S 2.3.3 and 2.3.4 but when I try it on my xoom, (I tested on both 3.1 and 3.2) it slows than the application to the point the it doesn't respond. Any help would be really appreciated.