Re: [android-developers] Re: Problems with getting signal strength

2011-01-19 Thread Filip Havlicek
You are completely right, I didn't even thought about the possibility of listen() overwriting previous registrations, but might have while reading the documentation. My bad. Thank you for your help. Filip Havlicek 2011/1/19 Alex > Try replacing > > m_tm.listen(m_psl, > PhoneStateListen

[android-developers] Re: Problems with getting signal strength

2011-01-19 Thread Alex
Try replacing m_tm.listen(m_psl, PhoneStateListener.LISTEN_SIGNAL_STRENGTHS); m_tm.listen(m_psl, PhoneStateListener.LISTEN_CELL_LOCATION); with m_tm.listen(m_psl, PhoneStateListener.LISTEN_SIGNAL_STRENGTHS | PhoneStateListener.LISTEN_CELL_LOCATION); On Jan 18, 10: