Link to home
Start Free TrialLog in
Avatar of sidwelle
sidwelleFlag for United States of America

asked on

Messaging, icon and ring-tone

Messaging

I want to be able to send text msgs to my phone and have the msg content determine the msg ring-tone and icon.  We send a lot of msgs to our phones at work as automated alerts, but the other day I received a msg from a weather service and the color of the text was set to deep blue, the msg had its own unique icon.

How do I reproduce this message ?

Thanks
Avatar of girionis
girionis
Flag of Greece image

Are you using the default application for SMS messages? If yes then I think you cannot do it. You have to use something like GO SMS Pro or Chomp in order to do it.
Avatar of sidwelle

ASKER

I will be happy to look those apps up, but I was looking for some documentation on how the msg was formatted so that I could re-produce it with a script.

Any documentation ?
Unfortunately GO SMS Pro or Chomp are not open source, but the text of the message itself can be in a view (such as text view or web view) so the only thing you have to do is to format the fonts. Here is a tutorial of how to write a very simple sms client for android. You can see that it's using an EditText component, so you can change the text colour by simply calling the .setTextColor() method on it.

There is also another open source sms application (SMSDroid) for android that you can take some ideas.
I emailed the author and ask if he had any infor on the format, but from reading some, more,  I am starting to think that what I am looking for is a MMS (Multimedia Msg Srvc) msg.

I will post back when I get some more detail.
I have attached an image of what I want to reproduce.  How do I specify a particular image and ringtone for a particular message ?  I know I could build a profile for a particular number, but I want to be able to control it from the sending app.

Thanks.
EmergencyAlert02.JPG
ASKER CERTIFIED SOLUTION
Avatar of girionis
girionis
Flag of Greece image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I will follow the tutorial.

Thanks