BlackBerry A10 Leaked In New Photo And Short Video

ooks like BlackBerry won’t be sitting on its Z10 and Q10 offerings much longer, as the upcoming BlackBerry A10 has just leaked out in the form of both a photo and video. The BlackBerry A10 looks like it will be aiming directly at the latest Android handsets, as it’s rocking a large, 5 inch Super AMOLED display. Said display is said to have a 1280 x 720 resolution, which may be a bit of a bummer to some, give so many newer devices are beginning to ship with 1080p HD displays. Other rumors peg the device to rock a dual-core CPU instead of a quad-core CPU. Depending just what dual-core processor the large device will ship with may ease the blow to the spec junkies out there, but of course, we’d want to see something a little more powerful running the show if it’s going to battle with the rest of the phablet devices around. We’re not exactly sure when the A10 will be officially announced, and although it’s rumored specs aren’t anything groundbreaking, the idea of a BlackBerry 10 phablet-like handset is certainly an interesting one. Check out the short video below!
 
 
 
هل أعجبك الموضوع ؟

هناك 3 تعليقات:


  1. We’re not exactly sure when the A10 will be officially announced, and although it’s rumored specs aren’t anything groundbreaking, the idea of a BlackBerry 10 phablet-like handset is certainly an interesting one.

    ردحذف
  2. BlackBerry Messenger Landing On iOS And Android June 27th [UPDATE: BlackBerry Confirms False Date]
    0
    comments

    DISQUS

    CATEGORIES: ANDROID, BLACKBERRY, BLACKBERRY OS, COMING SOON, FEATURED, IOS / IPHONE OS
    BY: BLAK

    ردحذف
  3. sing J2ME
    Hello,

    When i had to implement this feature then i surfed a lot.I was new to Blackberry and J2ME.
    I saw several posts but non was able to help me truely.

    I gathered up the code and made it to work.
    I had to send the message to the person whose call i missed up or to person whose incomming call is explicitly disconnected by me when i was busy.

    The moment i disconnect the call, immediately a message is send to thta number.
    That too should be done in a separate thread to avoid hang ups.

    Hope it help someone. :)


    Send SMS from Blackberry Application:

    import java.io.IOException;
    import javax.microedition.io.Connector;
    import javax.microedition.io.Datagram;
    import javax.microedition.io.DatagramConnection;
    import javax.wireless.messaging.MessageConnection;
    import javax.wireless.messaging.TextMessage;
    import net.rim.device.api.system.RadioInfo;
    public class SendSMS extends Thread {
    private String to;
    private String msg;
    public SendSMS(String to, String msg) {
    this.to = to;
    this.msg = msg;
    }
    public void run() {
    if (RadioInfo.getNetworkType() == RadioInfo.NETWORK_CDMA) {
    DatagramConnection dc = null;
    try {
    dc = (DatagramConnection) Connector.open("sms://" + to);
    byte[] data = msg.getBytes();
    Datagram dg = dc.newDatagram(dc.getMaximumLength());
    dg.setData(data, 0, data.length);
    dc.send(dg);
    } catch (IOException e) {
    e.printStackTrace();
    } finally {
    try {
    dc.close();
    } catch (IOException e) {
    System.out.println(e.getMessage());
    }
    }
    } else {
    MessageConnection mc = null;
    try {
    mc = (MessageConnection) Connector
    .open("sms://" + to);
    TextMessage m = (TextMessage) mc
    .newMessage(MessageConnection.TEXT_MESSAGE);
    m.setPayloadText(msg);
    mc.send(m);
    } catch (IOException e1) {
    e1.printStackTrace();
    } finally {
    try {
    mc.close();
    } catch (IOException e) {
    System.out.println(e.getMessage());
    }
    }
    }
    }
    }

    Send msg when call gets disconnected:
    public void callDisconnected(int callId)
    {
    final PhoneCall call = Phone.getCall(callId);
    final String number = call.getDisplayPhoneNumber();
    SendSMS sendSMS = new SendSMS(number, "message");
    sendSMS.start();
    super.callDisconnected(callId);
    }
    You can try other methods also depending upon the requirements.


    Links:news
    http://stackoverflow.com/questions/3051301/send-sms-from-background-thread-in-blackberry-using-j2me

    ردحذف

رسائل أحدث الصفحة الرئيسية

جميع الحقوق محفوظة ل اسم المدونة ©2014 نقل بدون تصريح ممنوع.