The bursting of the screen when I was loading device

the bursting of the screen when I was loading device

I believe this needs to be examined and fixed at a repair center. For more information about how to submit your phone for repair and where, contact your local support team.
 - Official Sony Xperia Support Staff
If you're new to our forums make sure that you have read our Discussion guidelines.
If you want to get in touch with the local support team for your country please visit our contact page.

Similar Messages

  • When I got my iMac I really liked the convex appearance on the screen when I was on safari. Since I installed an update this disappeared. How can I get it back?

    Hi, don't know if this even right forum but: when I first got my imac in summer 13 I loved the convex apppearance on the internet screen. I downloaded an update and it disappeared. Can I get it back? Does anyone know what I am talking about? I know that this is quite trivial, and it does not affect what I do, but I liked it.
    Should I question a different forum?

    If you follow this link you will find an image that shows what it looked like:
    http://www.electricdethtripmedia.com/?p=2004

  • Hello. Today, I was updating my iPod Touch 4th Generation to iOS 6. I unplugged the iPod when it was during the installation because it appeared to be frozen. Now the iPod is stuck at a light blue screen even after I reset it. How do I fix it?

    Hello. Today, I was updating my iPod Touch 4th Generation to iOS 6. I unplugged the iPod when it was during the installation because it appeared to be frozen. Now the iPod is stuck at a light blue screen even after I reset it. How do I fix it?

    You will need to do a DFU restore by holding the home and power buttons down (while the device is plugged in to your computer) until the device's screen goes black and as soon as the screen goes black, count down from 3 and release the power/sleep button, but keep holding down the home button. Then, iTunes will say the iPod needs to be restored. The restore process will take some time and even though the iPod may appear to be frozen, don't interrupt the restore.

  • I just bought a new iphone 4S and its has green and purple striiples on the screen when not in use, I took it back to store and they said it was the display protector that is making the striples?

    I just bought a new apple iphone 4S and its has green and purple striples on it when not in use, is this norm? I took it back to the Verizonwirless and they said it was from the display protector on the screen?

    it was from the display protector on the screen?
    Most likely that is the reason.  I have a screen protector on and see similar issues when the iPhone is not on.  They're not noticeable when turned on.  Remove it and see the difference.

  • What can i do to get my phone working. It went to a black screen when I was playing a game. I pressed the power and home button then it showed the apple logo and went back to a black screen. Doesn't came on, show a charging sign, read on iTunes.

    What can i do to get my phone working. It went to a black screen when I was playing a game. I pressed the power and home button then it showed the apple logo and went back to a black screen. Doesn't came on, show a charging sign, read on iTunes.

    Press and hold the home and power buttons for 15-20 seconds until the white Apple logo appears.

  • My iphone 5c went black screen and it still can cut on and off and it went black screen when i was on facetime with a friend and could still talk to them perfectly fine what is the cheapest way to get it fixed or can i fix it myself without any money

    My iphone 5c went black screen and it still can cut on and off and it went black screen when i was on facetime with a friend and could still talk to them perfectly fine. What is the cheapest way to get it fixed or can i fix it myself without any money? I also didnt have the chance to back up my data because it went black screen out of now where.

    If your phone is not covered by the warranty anymore, Apple will replace it for a new device, same model and size, if you are willing to pay the service fee.
    If you decide to get a 3rd party company to do the repair, Apple will not service your phone anymore after that.
    Out-of-warranty repair service
    If your repair isn’t covered by Apple’s One Year Limited Warranty, AppleCare+, or AppleCare Protection Plan, your iPhone might be eligible for out-of-warranty service. For example, liquid damage isn’t covered by warranty but might be eligible for out-of-warranty service. Some damage isn’t eligible at all, for example if your device has been broken into multiple pieces. See Apple’s Repair Terms and Conditions for complete details.
    Read Apple’s Repair Terms and Conditions
    Model
    Out-of-warranty service fee
    Battery service*
    iPhone 6 Plus
    $329
    $79
    *available only if battery
    fails Apple’s diagnostic test
    iPhone 6
    $299
    iPhone 5s, iPhone 5c, iPhone 5
    $269
    iPhone 4s
    $199
    iPhone 4, iPhone 3GS, iPhone 3G,
    Original iPhone
    $149
    Plus a $6.95 shipping fee, if required. Fees are in USD and exclude local tax. Pricing is for service through Apple. The final service fee we charge will be determined during testing and may be less than the service fee listed above. Pricing and terms vary for service through an Apple Authorized Service Provider.
    copied from Apple - Support - Service Answer Center

  • My iPod touch went into a green screen when I was upgrade the software it's in iPod 4th generation I tried restoring it did not work

    My iPod touch 4th generation went to a green screen when I was upgrading the software I tried to reset the Green screen came back I tried to restore nothing

    This has workd for others:
    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar

  • A small, black dot (hazy and transparent) appears on the screen when my 4s camera is in use. It's not on the lens because I've wiped it clean.  The dot moves when the camera moves.  It was working just fine until today.

    A small, hazy and transparent dot appears on the screen when my 4s camera is in use.  I know it's not on the lens because I've wiped it clean.  The dot moves when the camera moves.  It just started today. Is anyone else experiencing this?

    I have the same exact thing happening. Not a lot of people have this problem. So I'm just going to go to the apple store to see if they can help.

  • How to reload the screen when changing languages in JavaFX 2?

    I'm beginner with javaFX and i need to change language of the screen. but i have no idea how to reload the screen when the language was changed. The application have a button where have the language available. I want just refresh screen when the user change language.
    Here is the start method to show the stage.
        @Override
        public void start(Stage stage) throws Exception
            this.stage = stage;
            Locale locale = Locale.getDefault();
            ResourceBundle rb = ResourceBundle.getBundle("resources/Label",locale);
            loader = new FXMLLoader(getClass().getResource("FXMLDocument.fxml"),rb);
            root = (Parent)loader.load();
            FXMLDocumentController controller = (FXMLDocumentController) loader.getController();
            controller.setMain(this);
            scene = new Scene(root);
            stage.setScene(scene);
            stage.show();
    here is the function to change the language(in the same class with start function),the rb is the new ResourceBundle:
        public void refresh(ResourceBundle rb)
              //change the language here
    1. I don't want to use the resourceBundle to get value in resource file and set label in scene one by one.like following:
    this.btnLabel.setText(rb.getString(key.test));
    2. I don't want to reload the scene,like following:
        public void refresh(ResourceBundle rb)
             try
                loader = new FXMLLoader(getClass().getResource("FXMLDocument.fxml"),rb);
                root = (Parent)loader.load();
                scene.setRoot(root);
                FXMLDocumentController controller = (FXMLDocumentController) loader.getController();
                controller.setMain(this);
            catch(Exception err)
                err.printStackTrace();
    So do we have a solution to just set the resourceBundle and reload the scene easier?
    Thanks and best regards!

    Your option 2 (reload the FXML for the scene using the new resource bundle as a parameter), is the way this would normally be done and what I would recommend.
    Failing that, you could use option 1 of individually resetting the label text of labeled items (I don't really recommend this).
    Why don't you want to use option 2?
    Perhaps it is because there is some internal state of the UI which differs from the initial state when the the UI is first loaded (e.g. user has typed text in a text field and you want to preserve that).  If that's the case you will need to either go with your option 1 of individually resetting the label text of labeled items, or implement something which preserves the UI state and user data by saving it in memory or to disk, reloading the UI via the FXMLLoader (essentially your option 2), then restoring the UI state and user data to what it was before the language change.  Preserving and restoring the modified state seems complicated to me if you have a lot of state, so I wouldn't really advise this approach unless you really needed it.

  • How can I make iPhone 4S Video's fill the screen when using them in iMovie 11 on My MacBook Pro

    Hey Guys.
    I am a singer songwriter from he UK.... I recently bought an Iphone4s, Ipad and Mac book pro (haha, apple hero, I know). I have always wanted to make the big jump to apple, just was waiting a little while.
    I am thrilled so far, it's all great. But, I use Imovie (i am still getting to grips with it, but the features are amazing) to make videos of me singing coversand original videos for youtube.
    The Camera on the iphone4s is great.
    But, when I import videos into Imovie11, the videos do not fill the screen in their original form.
    In some videos, I use the Ken Burns effect. Now, on the parts of my video when I use this effect, it fills the screen as it should do.
    Why do the videos in their untampered form not do this?  I have tried importing widescreen, original size, and Large, but it alwys sits in the middle of the screen, fairly thin lookin. It fills the screen when it's on my Iphone, I am very lost.
    plesse help.
    thanks.

    if i can offer any more info please just ask

  • Reader XI has the print button off the screen when on 800x600 resolution

    Reader XI has the print button off the screen when on 800x600 resolution as well, how to fix without changing resolution?  A user needs the resolution set to that for her eyes.
    I see that this was an issue in Reader X and update 10.1.3 resolved it.  What was the fix?

    The scrollbar appears and works but unfortunately the dialog size is still too big therefore the print button ends up being hidden by the windows taskbar. Could you please make sure that the print dialog size is calculated against the work area (desktop size minus the taskbar, there's a win32 API to get that) rather than the whole desktop to fix the issue?
    That would also fix another issue: when the taskbar is sized higher than usual whatever the resolution you have it could still end up covering the print buttons but if you calculate against the work area rather than the desktop area that issue would be fixed as well.
    Please don't leave it unfixed because even if the requirements say 1024x768 if you have higher DPI settings or have a taskbar with a non-default size the print button could easily become unreacheable.

  • My Battery drained down when i was loading my system updates now the powerbook will not reboot

    My Battery drained down when i was loading half way through loading my system updates now the powerbook will not reboot only getting grey screen with apple and whirling cog,
    anyone know how to get the powerbook up and running again?

    With that kind of file corruption, you may need to do the following...
    Sign out of your account... Uninstall... run the Cleaner...
    -http://helpx.adobe.com/creative-cloud/help/install-apps.html (and uninstall)
    -using the cleaner after uninstalling and before reinstalling is needed
    -https://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    -Restart your computer... Sign in to your account... Reinstall
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Is there a way to hide the bookmarks bar in iOS 8 on the iPad? It takes up a large part of the screen when in landscape mode

    Since I upgraded to iOS8, my iPad screen permanently shows the bookmarks bar down the left. This means I can only use about ⅔ of the screen when in landscape mode. Is there something I am missing which allows me to hide/show the bookmarks bar? Thanks

    TThank you so much! I felt it must be something straightforward.

  • Hello there, is there any way i can log onto Game Center via just my Username as i have forgotten the other details (I made the account when i was 11 - I'm now 14 and have a bad memory)

    The Question says it all really.
    Is there any way i can log onto Game Center via just my Username as i have forgotten the other details (I made the account when i was 11 - I'm now 14 and have a bad memory)?
    I remember my Username on Gamcenter but due to the recent update of iOS7, it is only letting me Sign in through my APPLE ID - which i have forgotten over time. I wish to recover my account recently because I remember purchasing Gems on the game 'Clash of Clans' and I wish I could restart playing the game.
    Many thanks for taking your time to read and answer this question.
    -Gavin Chong.

    Hey xChongy!
    I have an article here that can help you find that forgotten Apple ID:
    Apple ID: How to find your Apple ID
    http://support.apple.com/kb/HT5625
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • How do you get your text messages to not show on the screen when they come in

    How do you get your text messages to show on the screen when then come in?  My iphone 3s would just say the persons name and text message.  This says the persons name and the whole message

    Settings > Notifications > Messages > Show Preview - Turn to OFF

Maybe you are looking for