• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Tim Cooke
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • Rob Spoor
  • Jeanne Boyarsky
Saloon Keepers:
  • Stephan van Hulst
  • Carey Brown
  • Tim Holloway
  • Piet Souris
Bartenders:

send sms special font

 
Ranch Hand
Posts: 635
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello

I am a beginnerin android programming. How to write a sms program that send sms that used a special font that I want?
 
Marshal
Posts: 5520
326
IntelliJ IDE Python Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Not possible I'm afraid. SMS payload is plain text only so you cannot specify any special formatting like font.
 
Bartender
Posts: 4179
22
IntelliJ IDE Python Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For true SMS, what Tim said is correct. Several applications get around that by creating a special service that does not rely on the phone's SMS capabilities, but rather uses their own internet-based service to send stylized messages that function like SMS. They can achieve this by using a dedicated application and a web service. So to do this you would need three components:
1) a process to register users
2) a web application which accepts messages and can route them to their destination
3) a send/receive application that can be used to read and write the messages

Of course, doing it this way limits the usefulness because you can only send messages to users who registered for your service.

Some applications get around the requirements for users to register by converting styled text to images and sending those images to the target phone as MMS. Since most phones can accept MMS, this means you aren't limited by users of just your application. You might also consider having a system where, if the receiver has registered with your application then you can send them the text through a push notification to your application, and only fall back to the MMS if the receiver doesn't have your application. This could save the receiver charges for the MMS which could be significant.
 
them good ole boys were drinking whiskey and rye singin' this'll be the day that I die. Drink tiny ad.
The Low Tech Laboratory Movie Kickstarter is LIVE NOW!
https://www.kickstarter.com/projects/paulwheaton/low-tech
reply
    Bookmark Topic Watch Topic
  • New Topic