Data SMS Message body not received in Android phones -


when send data sms android pones, message body not received. trigerring onreceived method of broadcastlistner , able senders address message body not received. returns null. faced similar issues?

my manifest file includes entries fro receiving data sms.

            <action android:name = "android.intent.action.data_sms_received"/>                <data  android:scheme="sms"/>                   <data android:host="localhost"/>                  <data android:port="16000"/>          </intent-filter>      </receiver> 

does know might problem?

how extract message body? data sms, should use 'getuserdata() instead of 'getmessagebody()' message body.


Comments

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -