Giter Club home page Giter Club logo

Comments (22)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024

Original comment by [email protected] on 26 Aug 2009 at 10:57

  • Changed state: Accepted

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
This problems also occurs if the contact's name contains accented characters 
like é. 

Original comment by [email protected] on 26 Aug 2009 at 11:22

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
Issue 44 has been merged into this issue.

Original comment by [email protected] on 9 Sep 2009 at 10:32

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
same issue with contacts containing the danish chars æ,ø,å (Å,Ø,Æ)

these sms'es show up as unknow in gmail :)

Original comment by [email protected] on 17 Sep 2009 at 9:59

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
I also have the same problem...
In Portuguese many contact names have special characters and they appears as 
unknown
in gmail.

Original comment by [email protected] on 22 Sep 2009 at 2:22

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024

Original comment by [email protected] on 17 Nov 2009 at 1:07

  • Added labels: Priority-High
  • Removed labels: Priority-Medium

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
[deleted comment]

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
[deleted comment]

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
[deleted comment]

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
Hi! Any update on this fix?
Would really be great to have this working! :-)

Original comment by [email protected] on 25 Jan 2010 at 9:12

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
Hi, any updates?

I just built an apk with a hack fix on this issue: Encode the name before 
constructing the 
Address object. I also added one more option in advance setting to display user 
name. It 
works well for me!

I attached it here for any one who couldn't wait for a real fix, but I don't 
undertake any 
potential issues due to this apk file. Looking forward to the real fix :-)

Original comment by [email protected] on 14 Feb 2010 at 7:13

Attachments:

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
@zhouguih...

Hi, could you submit your code changes to the repository?

Original comment by [email protected] on 22 Feb 2010 at 7:52

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
I don't have submit permission for this project. @chstude, my workaound is just 
one-
line code change, could you apply this fix first? Or do you have plan to fix 
the 
MimeMessage class?

Original comment by [email protected] on 22 Feb 2010 at 8:24

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
@zhouguih..., thanks for the tips. I made following changes to the code, and it 
works 
for me so far.

Index: android-client/src/tv/studer/smssync/CursorToMessage.java
===================================================================
--- android-client/src/tv/studer/smssync/CursorToMessage.java   (revision 65)
+++ android-client/src/tv/studer/smssync/CursorToMessage.java   (working copy)
@@ -36,6 +36,7 @@
 import com.android.email.mail.Message.RecipientType;
 import com.android.email.mail.internet.MimeMessage;
 import com.android.email.mail.internet.TextBody;
+import org.apache.james.mime4j.codec.EncoderUtil;

 public class CursorToMessage {

@@ -193,7 +194,7 @@
                 PersonRecord record = new PersonRecord();
                 record._id = String.valueOf(personId);
                 record.name = name;
-                record.address = new Address(primaryEmail, name);
+                record.address = new Address(primaryEmail, 
EncoderUtil.encodeAddressDisplayName(name));

                 mPeopleCache.put(address, record);
             } else {

Original comment by [email protected] on 24 Feb 2010 at 2:42

Attachments:

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
[deleted comment]

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
Hi XuJiyong

Thanks for your patch. I'll add it to the next release assuming you're fine 
with releasing 
it under the Apache 2 license.

Original comment by [email protected] on 20 Mar 2010 at 1:34

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
I'm fine with it. :) 

Original comment by [email protected] on 20 Mar 2010 at 2:32

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
Hi! Any plan with the new release?
Would be great to get this fixed.
Thanks!

Original comment by [email protected] on 27 Apr 2010 at 7:06

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
please release the fix!

Original comment by [email protected] on 21 May 2010 at 8:26

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
I have the same problem. Any contact containing non-ASCII character is 
displayed as (unknown) on gmail mailbox. Solution can be using sender/reciever 
as UTF-8 encoded strings. Hope to Android has some inbuild support for unicode 
strings.

Original comment by [email protected] on 21 Dec 2010 at 9:50

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
SMS Backup + (https://github.com/jberkel/sms-backup-plus/#readme) is a good 
alternative. It does non-ASCII just fine. It is a fork of the original SMS 
Backup application.

Original comment by [email protected] on 21 Dec 2010 at 9:57

from android-sms.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
I've switched to SMS Backup + for this one reason.

Original comment by reukiodo on 21 Dec 2010 at 8:49

from android-sms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.