SMS app offering contacts of nonsense

Hello, this is really weird and baffles me every time. I start typing an sms. I type a few letters of the name of the recipient and for some contacts, it offers me names that contain any of these characters! In any field. And it offers some independent people of the contacts on the top of the list! So to find the one I need either scroll down or enter the first letters more.

It seems to happen with some random contacts only and it does not reach the phone in contacts when I tap the magnifying glass and do the same thing.

@McVitas I have to remove your screenshots because they contain private phone numbers. But looking at the photos, some of the contacts are numbered in correlation with the letters that you insert (J = 5, E = 3) and so on.

Tags: Sony Phones

Similar Questions

  • BB10 WebWorks: how to call SMS app with content filled beforehand and without a phone number?

    Say that I want to share content via SMS, App can prepare the content, launch the SMS application and users enter the number of the recipient.

    Is this possible? BB10 WebWorks call APIs seems to require pre-filling the destination number.

    https://developer.BlackBerry.com/HTML5/documentation/text_messages.html

    Thank you

    I found another way, instead of directly calling the SMS app, I can call target selector API actions and from there I select SMS or Email or BBM or Facebook or Twitter, LinkedIn, line break work well, a single API call solves all registered social work services.

    https://developer.BlackBerry.com/HTML5/APIs/BlackBerry.Invoke.card.html#.invokeTargetPicker

    try {}
    application of var = {}
    Action: "bb.action.SHARE."
    data : 'Line 1' + '\n ' +.
    'Line 2' + '\n ' +.
    'Line 3' + '\n ';
    MIME: "text/plain",
    target_type: ['MAP']
    };

    () blackberry.invoke.card.invokeTargetPicker
    asks,
    "Share."
    function (successEvt) {},
    {function (errorEvt)}
    );
    }
    {} catch (e)
    }

  • Removal of the standard SMS app on my Storm blackBerry Smartphones

    I recently came across another SMS / MMS app for my storm known as crunchSMS. I fell in love with this app and it replaced the standard SMS app that comes installed on the Blackberry Storm and everytme I get a text message, it appears in crunchSMS and the standard SMS app, instead of standard SMS app to get rid of the messages that I receive, I was wondering if it was possible to remove the standard SMS off my Storm app. Any help would be most appreciated.

    There is not a way to remove that. You can hide the icon but if you do not have to see. If you select the icon and click the menu button, you can choose to hide.

  • When sending sms, some no-contact. SMS and some no-contact. not get?

    Hi all

    I developed the sms application, when I send the SMS from this application, some no-contact. to sms but some no-contact. do not get.

    can someone help me?

    concerning

    Savi

    Hi all

    I solved this problem. now I can send message to anyone of this sms application.

    If anyone need this app, I'm writing this request here... This works perfectly...

    package sms.savi;

    Net.rim.device.api.ui import. *;
    Net.rim.device.api.ui.component import. *;
    Net.rim.device.api.ui.container import. *;
    Javax.microedition.io import. *;
    Import Java.util;
    import java. IO;
    Javax.wireless.messaging import. *;

    class SmsDemo extends UiApplication {}

    Constants
    // ----------------------------------------------------------------
    private static final int MAX_PHONE_NUMBER_LENGTH = 32;

    Members
    // ------------------------------------------------------------------
    Private EditField _sendText.
    Private EditField _address; A phone number for outgoing SMS messages.
    Private _status EditField.
    Private ListeningThread _listener;
    private SendThread _sender.
    private StringBuffer _statusMsgs = new StringBuffer(); Caching for
    improved
    performance

    private MessageConnection _mc;
    Private boolean _stop = false;

    _sendMenuItem private MenuItem = new MenuItem ("send", 100, 10) {}
    public void run() {}
    String text = _sendText.getText ();
    String addr = _address.getText ();

    If (text.length > 0 () & addr.length () > 0) {}
    Send (addr, text);

    }
    }
    };

    Static
    // ------------------------------------------------------------------
    private static String _openString = "sms: / /"; See connector

    information on the implementation.

    Public Shared Sub main (String [] args) {}
    Create a new instance of the application and the beginning
    the application on the thread of the event.
    SmsDemo sms = new SmsDemo();
    sms.enterEventDispatcher ();
    }

    Inner classes
    // ------------------------------------------------------------
    private class ListeningThread extends Thread {}
    synchronized Private Sub {} stop()
    _stop = true;

    try {}
    If (_mc! = null) {}
    Close the connection so that the thread will return.
    _mc. Close();
    }
    } catch (IOException e) {}
    System.Err.println (try ());
    }
    }

    public void run() {}
    try {}
    _mc = Connector.open (_openString) (MessageConnection); Closed
    by
    the
    Stop()
    method.

    for (; {
    If {(_stop)
    return;
    }

    Message m = _mc.receive ();
    receivedSmsMessage (m);
    }
    } catch (IOException e) {}
    Probably the stream has been closed.
    System.Err.println (try ());
    }
    }
    }

    /**
    * A simple abstraction of an sms message, used by the SendThread class.
    */
    private static final class SmsMessage {}
    private String _address;
    private String _msg;

    private SmsMessage (String address, String msg) {}
    _address = address;
    _msg = msg;
    }

    Private Message toMessage (mc MessageConnection) {}
    TextMessage m = (mc.newMessage) (text)
    MessageConnection.TEXT_MESSAGE, ' / / ' + _address
    + "");
    m.setPayloadText (_msg);

    return m;
    }
    }

    /**
    * A thread to handle outbound transactions.
    */
    private class SendThread extends Thread {}
    private static final int TIMEOUT = 500; MS

    Create a vector of objects SmsMessage with an initial capacity of 10.
    For this implementation, it is unlikely that more than 10 messages
    queued at a time given.
    private vector _msgs = new Vector (10);

    volatile Boolean _start private = false;

    The applications are pending.
    private synchronized {void send (address of the string, String msg)
    _start = true;
    _msgs. AddElement (new SmsMessage (address, msg));
    }

    Termination of the thread.
    synchronized Private Sub {} stop()
    _stop = true;

    try {}
    If (_mc! = null) {}
    _mc. Close();
    }
    } catch (IOException e) {}
    System.Err.println (e);
    updateStatus (try ());
    }
    }

    public void run() {}

    for (; {
    Adjustment of the wire.
    While (! _start &! _stop) {}
    Sleep for a bit so we don't spin.
    try {}
    Sleep (timeout);
    } catch (InterruptedException e) {}
    System.Err.println (try ());
    }
    }

    Exit condition.
    If {(_stop)
    return;
    }

    While (true) {}
    try {}
    SmsMessage sms = null;

    synchronized (THIS) {}
    If (! _msgs.isEmpty ()) {}
    SMS = _msgs.firstElement () (SmsMessage);

    Delete the item so that we don't send it again.
    _msgs. RemoveElement (SMS);
    } else {}
    _start = false;
    break;
    }
    }

    _mc. Send (SMS.toMessage (_mc));
    _mc. Close();
    System.Exit (0);

    } catch (IOException e) {}
    System.Err.println (e);
    updateStatus (try ());
    }
    }
    }
    }
    }

    private class SmsDemoScreen extends form {}

    Constructor
    private SmsDemoScreen() {}
    Dim str As String = "8971833590";
    String = msgStr "How are you?"
    setTitle (new LabelField ("Demo SMS", LabelField.USE_ALL_WIDTH));

    _address = new EditField ("to:", "", MAX_PHONE_NUMBER_LENGTH,)
    EditField.FILTER_PHONE);
    Add (_address);
    Add (new SeparatorField());
    _sendText = new EditField ("Message:", "");
    Add (_sendText);

    /*
    * _status = new EditField(); Add (_Status);
    */

    addMenuItem (_sendMenuItem);
    }

    /**
    Prevent save them dialog box is displayed.
    *
    * @see net.rim.device.api.ui.container.MainScreen #onSavePrompt)
    */
    public boolean onSavePrompt() {}
    Returns true;
    }

    /**
    * Close the application
    *
    * @see net.rim.device.api.ui.Screen #close)
    */
    {} public void close()
    _listener. Stop();
    _sender. Stop();
    Super.Close ();
    }
    }

    Constructor
    private SmsDemo() {}
    _listener = new ListeningThread();
    _listener. Start();

    _sender = new SendThread();
    _sender. Start();

    Screen SmsDemoScreen = new SmsDemoScreen();
    pushScreen (screen);
    }

    /**
    * Update the GUI with the data just got.
    */
    {} private void updateStatus (final String msg)
    invokeLater (new Runnable() {}
    public void run() {}
    Delete the string buffer.
    _statusMsgs.Delete (0, _statusMsgs.length ());
    _statusMsgs.Append (_Status.GetText ());
    _statusMsgs.Append ('\n');
    _statusMsgs.Append (MSG);
    _Status.SetText (_statusMsgs.ToString ());
    }
    });

    }

    /**
    * A simple formatting of received sms message.
    */
    Private Sub receivedSmsMessage (Message m) {}
    String msg_app = m.getAddress ();
    Address of string = m.getAddress ();
    String msg = null;

    If (m instanceof TextMessage) {}
    TextMessage tm = m (text);
    MSG = tm.getPayloadText ();
    }

    StringBuffer sb = new StringBuffer();
    SB. Append("Received:");
    SB. Append ('\n');
    SB. Append("destination:");
    SB. Append (Address);
    SB. Append ('\n');
    SB. Append("Data:");
    SB. Append (MSG);
    SB. Append ('\n');

    updateStatus (sb.toString ());
    }

    private send Sub (String addr, String data) {}
    _sender. Send (addr, data);
    }
    }

    Of

    Savi

  • Make messages by default SMS app when not on wifi

    Hi all. I just had a question about iMessage. I have a 6 s iPhone running iOS 10.0.1. I have no data. I love the new iMessage, and I would like to try it out, so yesterday I turned on iMessage. However, I was in a place with no WiFi, and one of my friends sent me an important through iMessage message. He said it was delivered, but I do not have it. I know that there is a way to send SMS iMessage by double tapping by clicking send as SMS, but it would be too difficult to get all of my contacts with the iPhones do it for me. Is there a way to make sure that when I send messages on WiFi to other users of the iPhone, the default values of the iMessage message, and when I'm not on WiFi, they by default for SMS? Or something like that?

    Thank you very much.

    N

    In theory, if you are not connected to data, Messages must use the WiFi. However, it is not always instantaneous. And, if you have other devices connected to the same Apple ID as an iPad or a Mac, you'll find that this does not always work as you want. I highly recommend that if you have not given cell phones on your iPhone, you disconnect from the iMessage and only use SMS.

  • App 2016 contacts

    I've used Apple products for 20 years. I added this section to take into account the year because I can't find anything that talks about the many issues that are currently happening with the Contacts application. It's my mistake, or you have been assimilated into the collective. Please do not ask me what system I use or what camera I'm having this problem. It has NOTHING to do with the device of the operating system or whether or not I use the iCloud. The Contacts app and how it interacts with the currencies, IS the question. I tried to leave a comment, but the 'Apple product"is not listed. I tried to contact support, but they agree with my frustration and have NO answers.  Here are my Questions and comments.  I welcome all responses, even if it's someone I am doing wrong.

    Why I cant text a person on their cell phone unless I list of contacts as a 'Mobile' or 'iPhone '?

    Why can't make contact with two addresses of email without him change the name of my email?

    Why can't I have a private phone number on a contact, and also as one reference on another WITHOUT programs combining the two?

    Why can't I control my contacts without Apple share with everyone?

    Why can't I give a custom phone number and always text e-mail name and search for this custom name?

    Why can't I name a contact that I want the name. Then, search for the name in alphabetical order. And that the name I type - nothing more?

    Why am I obliged to add an e-mail duplicate to contacts with a separate for each contact name so that contact program does not change my email?

    Suggestions: 1. we can say contacts to ignore this contact. 2. we allow to use an email, phone number or name more than once.  3. we allow you to send an email to someone and disable email capture and retention. 4. we allow to be human and have two or even three different was to configure each device the way we want it. 5. we can take back control of our personal currencies, WITHOUT changing once we put everything in place. 6. do not we're all complete idiots.

    Here are some of my MANY questions and suggestions.

    And finally, does anyone know an application of contact that I can use on my iMac, iPhone, iPad and my lone PC which will organize my contacts as I want them organized? Not the way I'm forced to organize. AND it will work with my Mail APP, text App, FaceTime, and others, WITHOUT any change. Please, please someone help used.

    It is a forum for user help. You do not discuss Apple here.

    To submit your comments directly to Apple using this link http://www.apple.com/feedback/

  • Z5 double sms app

    I would just ask y at - it an option to set the notification leads the time blinking every 2 seconds because every time I received a msg of the led flashes very long intervals, you really need to check your phone if your have a msg and also I get notification when I got the msg, the screen lights up? I have no problem if I use another sms application rather than the built-in app from the phone.

    I would suggest looking for applications such as

    Manager of light - LED parameters on google game

  • Sharing of the best scores App with Contacts

    I was wondering how I could allow users to see what their friends scored on a game app. Is there access to a list of contacts?

    Take a step away, just a possibility, I think about everything, but is there a way for users to share created contained with friends? that is, the app allows you to design a level puzzle or something and you could send just a small data file to a friend to download their application, so that they can now play the level of their designed friend. Not really sure if this is possible. Any ideas?

    Hey,.

    at the present time, we cannot access data privacy of the device such as contacts. hope that this feature will be available very soon. That being said, you can create and manage your own contact list using any sort of data storage (e.g., SQLLite, storing files, ShareObject, etc.). Once you have that you can store the names of emails and such, and your application can access these data.

    Now from what I recall AS3 has not built in order to send an email directly from him. Better to use an online method as mentioned by willyyr in the post above me. Use the URL Loader object and send a request to your website or a website form mailer. Your idea of emailing the file, however, can be a little difficult because this would imply creating an attachment you will need to attach it to an email. an easier option would be to have a Web site where you store a central database of cards created by the user and the content. As mentioned before, you can send these cards and content to your Web site by using the URLLoader object.

    All that would require that you have a server configured to be able to handle such requests. It can be any host or domain as long as you have access and are able to create scripts with a language online such as PHP, ASP, Java, etc.

    Here is a link to the ASDocs for the URLLoader class which will be useful:

    http://livedocs.Adobe.com/Flash/9.0/ActionScriptLangRefV3/Flash/NET/URLLoader.html

    hope that helps! Good luck!

  • How to do a screen with pretty boxes and dividers like native app for Contacts?

    Hi All-

    Someone knows how to create these pretty boxes/borders around groups of fields, such as the native Contacts app uses? When I insert separators between fields I get annoying lines.

    Thank you!

    Nicholas

    Check out this thread: http://supportforums.blackberry.com/rim/board/message?board.id=java_dev&message.id=13626#M13626

  • People App merge contacts

    So, there is an option to link the different accounts such as Facebook, Skype, Gmail contacts, etc.. I tried links them to each person when the app shows multiple entries for a single person. But when I link, it does not work. Only Facebook and living are linked, but still, the other contacts are listed as separate profiles. It runs on Windows Phone 7. So, I wonder what the problem is.

    I have uninstalled/reinstalled the app twice and now it seems that his work. The sad part is that I not did something to solve the problem except uninstall... These kinds of bugs are common (with music, WiFi) on the platform with fixes at random along the way. It's frustrating to have bugs, but when the bugs are inconsistent, even more confusing sound... I am pleased that contacts linking now works well...

  • Hub Hub Android blackBerry SMS does not open SMS app

    I have a HTC of 10. I installed the app hub recently and everything seems fine so far except that clicking on a text message does not open the text conversation, it goes to the message text component screen. I hope that this problem is corrected in a future update.

    As a side note, it would be nice to be able to add third-party applications on the hub, like text application of heel twitter client or a third party.

    Hi @idon12no

    Thanks for your feature suggestions

    I captured these and share internally so I will mark my answer as the solution.

    For others, if you want one or the other of these options of response to this topic to express interest.

    Thank you!

  • How do the native sms app icon hidden by my code?

    I want to hide the Native SMS application when my application is installed, did I can do with my code?

    I havn't met any API to achieve this.

  • BlackBerry App download contacts for Audi MMI in car phone system

    Why the list of those who I follow on Twitter download when I download my phonebook to the car phone system? I have my BB set Z10 so that these twitter contacts are not displayed in the phone contacts! Nevertheless, they go down to the car phone directory? Why?

    Hey jeffsewd,

    Welcome to the community of BlackBerry Support Forums.

    Thanks for the question.

    This can be fixed by disabling the synchronization of contacts Twitter.  Open the contacts on the BlackBerry Z10 and wide from top to bottom and open settings.  Turn off Twitter and all the other accounts you want to not see under contacts.

    Let me know if you have any other questions.

    See you soon.

  • Windows 8 Mail app - adding contact

    Hello

    Sometimes, when I get an email, I want to add the sender to my list of contacts/people.  Is this possible with the application of windows messaging 8?  In outlook, you can right click on the sender and add to contacts... it doesn't seem to be something similar in the messaging application.
    thnx.

    Windows 8.1 with update 4/2014...

    Click on the sender

    Get a dialog box with the add to Contacts"" button.

    OK now seems to me.

  • Pack upgrade of photograph of the student/teacher to student/teacher all apps offers special prices?

    I have currently the pack photography student/teacher for £7.99 a month. I want to upgrade to the student/teacher all the apps. When I try to change the plan in my account it says to al apps it's £21,91 per month, but on the Web site it it looks like £15.49 per month. When I select the £15.49 per month package directs me to support the customer for the promotional price. Please can someone help me with this? Thank you.

    As you already know, waiting customer.

    To the link below, click on the still need help? option in the blue box below and choose the option to chat or by phone...

    Make sure that you are logged on the Adobe site, having cookies enabled, clearing your cookie cache.  If it fails to connect, try to use another browser.

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html ( http://adobe.ly/19llvMN )

Maybe you are looking for

  • Miss me the new tab button. Why?

    I use version 21.0. The new tab button appears in the bookmarks toolbar, but not with the open tabs. Why?

  • Need iTunes for XP

    Where can I find a link to download iTunes for windows XP?

  • My dell webcam not working not properly

    Please connect its always on display in the supported devices   

  • How to convert a WebM to MP4/AVI/WMV video, etc.

    Hello. I recently bought an app for my android device to record movies at home by using the camera of the device and the use of various filters and effects 'live '.It is a cool application and does everything I want it, but the devs decided not to bu

  • Activated Windows not genuine, SFC/scannow fails

    Hello I use DELL Latitude and the windows 7 is installed at the factory. It all started when... 2-3 weeks ago I noticed that my dialog box of Windows features on/off was empty. My updates were not running and MS Windows Essentials was also not corrup