while(1)
{
iLen = m_cInputStream.read(bytesBuffer);
if(iLen > 0)
{
// Toast Show
}
Thread.sleep(10000);
}
example source for explain.
and i will send '0' -> then, app will show toast [ 0 ].
and i will send '1' directly -> If, it is ideal situation, then 10second after
showing toast [1].
but didn't showing...
where is my '1'...??? why missing byte?
Original issue reported on code.google.com by
rod12...@gmail.comon 7 May 2014 at 9:05