03-01-2009 11:30 PM
Solved! Go to Solution.
03-02-2009 07:59 AM
03-02-2009 08:35 AM
03-02-2009 08:48 AM
03-02-2009 07:08 PM
03-05-2009 04:16 PM
04-09-2009 07:25 AM
09-21-2009 03:16 AM
This problem persists on my Bold 9000 but not any of my other GPS enabled phones.
Since it was a pain to try to figure out, here's the code I used to resolve this issue.
private String trimPhoneNumber(String phoneNumber){ byte phoneBytes[] = phoneNumber.getBytes(); int length = phoneNumber.length(); int offset = 0; if ( phoneBytes[0] == 0x3F ) { length--; offset++; } return new String(phoneBytes, offset, length); }