Caller screen not visible, mixed up screens on iphone

when my phone is not in use, often times there will be two screens visible at once. for example, the ipod control will be visible on my wallpaper when i'm not even using the ipod.
also, the screen doesn't always come up when someone is calling me.

Is this what you are seeing?
http://i38.tinypic.com/2qtwmtc.jpg
*That is a screen shot of iPod Control while iPhone is locked. It is typically activated when you double click the home button. It can make the controls re-appear and disappear.
Have you tried rebooting iPhone at all since this started?
Hold down home button - & Sleep/Wake button together. Let go once you see a silver apple logo.

Similar Messages

  • How do i bypass the emergancy calls screen for iphone 3g

    my phone is stuck on the emergancy calls screen and id like to know how to bypass that?

    Try resetting:
    Hold both the home and power buttons at the same time until the Apple boot logo appears. No data will be lost.

  • TV shows not visible in videos app on iPhone

    I have an iPhone 3gs with ios 5.1. I have downloaded tv shows direct from itunes to the phone. However they don't display in the video app. I plug my phone into my Imac and the tv shows are listed as being on my phone.  If I change the catergoy of the tv shows using the option tab to music video- they appear on my phone instantly.
    What am I doing wrong that they don't show as TV shows?

    Quit the Videos app completely and then go back and look again.
    Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Or try this, if that didn't work.
    Swipe to the right from your first home screen to get to the iPad Spotlight search. Type in the name of any of your movies in the field at the top. When the movie appears in the search - tap on it and it should start to play. Let it play for a minute or so - hit done - go back to videos app and see if all is OK.

  • Photo album not visible on all devices.

    Hi,
    I created an ablum on Cloud and moved many photos into it from one for my devices (iphone 4s) and this ablum was visible from all my devices. I used to view/delete them from all my devices (2 iphones and 1 pad) which use the same appleid. But recently I noticed that this ablum is not visible from one of the iphones, however the other iphone and ipad can see this ablum. I also tried creating a new ablum and this is visible to all the three devices but not the first one. What should i do to make the older ablum visible on the iphone which use the same apple id as other devices. Please help or give your suggestions.
    Thanks,
    Kumar

    Many thanks to the dev team at iFunBox.  Using this application I was able to drill down into the iOS file system, find the photos, and make a backup to my local hard drive.
    As said before, we don't know how the photographer transferred the photos, but being as they were in an album, I assume iPhoto.
    When drilling down into the file system, there was a Camera folder(even though there is no camera) which contained all of the photos which were visible on computers.
    Addtitionally, there was another folder called Photos which housed all of the vacation photos in folders labeled "Fxx"  xx being a reference number.  All 1472 photos in this directory were not visible on computers.
    Zak

  • ALV not getting refreshed when call screen is executed second time

    I have 2 screens 9001 and 9002. In 9001 , I am displaying the fields of a database table in a Table Control. The user has to select some of those fields and click on a button 'Generate ALV'. After clicking , the control navigates to 9002 where I am displaying ALV with data in the selected fields(the other fields remain empty). (using custom container)
    Now there is BACK button in 9002 where i have written LEAVE TO SCREEN  9001. After this if the user again make changes in column selection and click on 'Generate ALV' , then still the old alv data is displayed. (Mind you the structure of alv is same , only the selected fields should show data).
    I am using REFRESH_ALV_DISPLAY also and when i tested this function independently , its working fine (although for interactive alv in the same screen).
    I am making use of <fs> for dynamic internal table and i checked it using breakpoints , during the 2nd time , it contains the correctly updated data so i think the problem lies with alv
    Kindly check this code
    MODULE STATUS_9002 OUTPUT.
      SET PF-STATUS 'ZALV'.
    *  SET TITLEBAR 'xxx'.
      CREATE OBJECT C_CONT
        EXPORTING
          CONTAINER_NAME               = 'CUST_CONT'
      IF SY-SUBRC <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    IF OBJ_ALV IS INITIAL.
      CREATE OBJECT OBJ_ALV
        EXPORTING
          I_PARENT           = C_CONT
      CALL METHOD OBJ_ALV->SET_TABLE_FOR_FIRST_DISPLAY
         EXPORTING
           I_STRUCTURE_NAME              = INP_TABLE
         CHANGING
          IT_OUTTAB                      = <itab>
    ELSE.
       CALL METHOD OBJ_ALV->REFRESH_TABLE_DISPLAY
      ENDIF.
    ENDMODULE.                 " STATUS_9002  OUTPUT
    Edited by: amber22 on Sep 16, 2011 6:45 PM

    Amber,
    Something like:
    *&      Module  STATUS_9001  OUTPUT
    MODULE status_9001 OUTPUT.
      SET PF-STATUS 'ST9001'.
    ENDMODULE.                 " STATUS_9001  OUTPUT
    *&      Module  USER_COMMAND_9001  INPUT
    MODULE user_command_9001 INPUT.
      CASE sy-ucomm.
        WHEN 'GEN'.
          SELECT * FROM spfli INTO TABLE gt_outtab.
          CALL SCREEN 9002.
        WHEN 'BACK'.
          LEAVE.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9001  INPUT
    *&      Module  STATUS_9002  OUTPUT
    MODULE status_9002 OUTPUT.
      SET PF-STATUS 'ST9002'.
      IF obj_alv IS INITIAL.
        CREATE OBJECT c_cont
          EXPORTING
            container_name = 'CUST_CONT'.
        CREATE OBJECT obj_alv
          EXPORTING
            i_parent = c_cont.
        CALL METHOD obj_alv->set_table_for_first_display
          EXPORTING
            i_structure_name = 'SPFLI'
          CHANGING
            it_outtab        = gt_outtab.
      ELSE.
        CALL METHOD obj_alv->refresh_table_display.
      ENDIF.
    ENDMODULE.                 " STATUS_9002  OUTPUT
    *&      Module  USER_COMMAND_9002  INPUT
    MODULE user_command_9002 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK'.
          CALL METHOD: obj_alv->free, c_cont->free.
          CLEAR: obj_alv, c_cont.
          CALL METHOD cl_gui_cfw=>flush.
          LEAVE TO SCREEN 9001.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9002  INPUT
    Altough it's not a really nice solution... Why using 2 screens for example? you could use two containers instead...
    Also I would recommand playing with the new salv class for your grids.
    Anyway don't hesitate to give feed-back.
    Kr,
    m.

  • I've found two bugs in iOS 7. 1) declined calls does not appear as missed calls on the lock screen/notification centre. 2) when bluetooth is enabled from control center, it does not connect to an already paired bluetooth device

    I've found two bugs in iOS 7:
    1) declined calls does not appear as missed calls on the lock screen/notification centre - iOS 7.0.2.
    2) when bluetooth is enabled from control center, it does not connect to an already paired bluetooth device automatically - iOS 7.0.

    We are all users here, just like you, but you can tell Apple about it by using this link:
    Apple - iPhone - Feedback

  • Why is the placeholder Q&A for multiple choice not visible on screen?

    After inserting 6 Multiple choice quiz slides in Captivate 7, the placeholder Q&A text is not visible, so there's no way for me to modify them with my Q&A's. However, they are visble in Preview mode. Any suggestions?
    This is happeneing in a project that someone else created & I am editing. I made a new version & copy/pasted the quiz slides into a new file. Ever since then I've had this problem. When I open the original file, it's now doing the same thing there as well. What gives??
    Below is what I'm seeing. If you look at the slides on the filmstrip on the left, you can see that there is nothing there, however in the Preview, you can see the placeholder text.

    Hi Rod & Lily! Thanks so much for replying.
    OK - the screen shot below is what I see when I am in edit mode. Completly blank except for the "Multiple Choice" heading at the top. I've highlighted in red on the Properties & Filmstrip, which Master slide I'm using. Hopefully you can see that on the Master Slide the placeholder text is there, but not in the edit view.
    Lily - below is a screen shot of the Quiz Properties. Hopefully you can see it.

  • IT 580 : Screen Details not visible

    While creating data in IT580 ( Previous Employment Tax Details).. The screen is not visible completely.
    Only following feields are visible :
    Pers. No.
    Name
    Category
    Location
    From & To date
    Previous Employment Tax Details :
    Leave Encahsment Exemption Amount
    Gratuity Exemption
    VRS Exemption
    No. of LTA Exempt
    LTA carried forward
    The screen is blank other than than the above mentioned, no details are visible.
    Could anyone resolve this query pls ???
    Rgds.. Pushkaraj

    Hello Pushkaraj,
    Can u plz check if hiring date of the employee is begin date of the Financial year. If this is the case then only following fields will be applicable for the Previous Employment Tax Details :
    1. Leave Encahsment Exemption Amount
    2. Gratuity Exemption
    3. VRS Exemption
    4. No. of LTA Exempt
    5. LTA carried forward
    this is because only thess exemptions can be adjusted/ carried forward to the current year from the previous year. Other components like previous gross salary , PF, Ptax, Income tax etc are not applicable for the cross financial year adjustemnt in such a case.
    U can test the same with a hiring date other than the begin date of the financial year. u will get the whole screen.
    Check and let me know if still its nt clear.
    Regards,
    Praveen

  • Statement "CALL SCREEN" is not allowed in this form.

    Hi,
    Could anyone identify the short dump.
    Statement "CALL SCREEN" is not allowed in this form.
    There is probably an error in the program
    "SAPLKKBL".
    This program is triggered in the update task. There, the
    following ABAP/4 statements are not allowed:
    -  CALL SCREEN
    -  CALL DIALOG
    -  CALL TRANSACTION
    -  SUBMIT
    Error in
    "POSTING_ILLEGAL_STATEMENT" " "
    "SAPLKKBL" or "LKKBLU01"
    "K_KKB_LIST_DISPLAY"
    Regards
    Manohar S

    Short text
    Statement "CALL SCREEN" is not allowed in this form.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "SAPLKKBL" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    What can you do?
    Note down which actions and inputs caused the error.
    To process the problem further, contact you SAP system
    administrator.
    Using Transaction ST22 for ABAP Dump Analysis, you can look
    at and manage termination messages, and you can also
    keep them for a long time.
    Error analysis
    There is probably an error in the program
    "SAPLKKBL".
    This program is triggered in the update task. There, the
    following ABAP/4 statements are not allowed:
    -  CALL SCREEN
    -  CALL DIALOG
    -  CALL TRANSACTION
    |    -  SUBMIT       
    Information on where terminated
    Termination occurred in the ABAP program "SAPLKKBL" - in "K_KKB_LIST_DISPLAY".
    The main program was "RSM13000 ".
    In the source code you have the termination point in line 441
    of the (Include) program "LKKBLU01".
    |    The program "SAPLKKBL" was started in the update system.    
    This is the dump

  • I accidently click for a full screen view on Firefox and now I can't undo it. My bar with tools, bookmarks, etc. is not visible. As the browser opens, the bar appears but then jumps up where it can't be reached. How do I turn off the full screen?

    I accidently clicked for a full screen view on Firefox and now I can't undo it. My bar with tools, bookmarks, etc. is not visible. As the browser opens, the bar appears but then jumps up where it can't be reached. How do I turn off the full screen without access to view options?

    Co-el, This wasn't possible as there wasn't a navigation bar available. The F11 did the trick though. Thanks for adding to the discussion.

  • Full Screen is not visible

    Hi Experts,
    When i execute any web dynpro application(e.g Leave Approval) in browser(IE6), the screen is not visible fully that's why i can't click on submit button in order to approve the req.
    work around for this issue is F11. by pressing F11 full screen comes up but I need permanent Solution. Kindly help me.
    I appreciate any suggestions.
    Regards
    Manish

    Hi Manish
    Are you running the application directly from the wd or you have created the iview for that application?
    If you have created an iview for your application, there might b the reason that you forgot to set the open page property as full page. If this is the case, do it.
    If you are running your application from wd itself, and not able to see the complete view - try this
    1. try to run in other IE versions. But, tell you something, 6 is the best to run all the applications.
    2. check the component used by you in the application & there sizes. Sometimes, problem comes that you outerframe size is less as compared to inner. This will result in the same situation.
    Just try this and tell me if something worked out for you. Thanks.
    Best Regards
    Chander Kararia
    If your problem is solved, close the thread marking answered.

  • Menu bar is not visible, but neither is Full Screen mode button. How do I fix this?

    While I am in Firefox, it appears that I am in Full Screen mode, as my Menu Bar is missing while in the application, but when I looked up how to troubleshoot, it told me to click on the Full Screen mode button (with diagonal arrows) but it is not visible anywhere in my browser. How else can I get out of Full Screen mode? Thank you!

    On Mac you can use: command+Shift+F

  • Park button not visible in F-63 screen

    Hi,
    I created a role that will alllow a user to park the document using F-63. In DEV it's working fine however when I transported it to PRD. The Park Document button (SAVE) is not visible or deactivated in F-63 screen in PRD.
    Any help is much appreciated? Thanks.
    Regards,
    Threadstone

    Hi Threadstone,
    The GUI-Status ZBVV has got the save-Button PBBP, but the display of it can be excluded.
    You can see what happens, when you set a break-point in function Group F040 (Transaction SE80, Function group, F040, PBO-Module, Status_setzen_zbv, click left of line-number of the line “if yfuncl eq ’P’.”):
    module status_setzen_zbv output.
      tables: with_item.
    *------- Standard-Status -----------------------------------------------
      if yfuncl eq 'P'.
        status = 'ZBB'.
      elseif yfuncl eq char_r.
        status = 'ZBF'.
      else.
        status = 'ZBV'.
        if rfopt2-xcmpl eq char_x.
          status+3(1) = char_v.
        endif.
      endif.
    *------- STATUS setzen -------------------------------------------------
      perform status_setzen.
    endmodule.   
    Another Break-point might be set in subroutine “extab_fuellen” where functions are appended which shall not be used.
    form exctab_fuellen.
      refresh exctab.
      if bseg-koart ne char_k and
         bseg-koart ne char_d                                   "/N394306
      or ( bseg-koart = char_k and lfa1-xzemp is initial )      "/N394306
      or ( bseg-koart = char_d and kna1-xzemp is initial ).     "/N394306
        exctab-okcod = 'ZEMP'.
        append exctab.
      endif.
      if yfuncl eq char_d or
         yfuncl eq char_r.
        exctab-okcod = 'BP'.
        append exctab.
        exctab-okcod = 'PBBP'.
        append exctab.
    Yfuncl has got value D (display) or R (release). It can be, that the user has not got the authority for saving. Please check SU53 or via ST01.
    Regards Wolfrad

  • Please help ... have new samsung ativ se windows 8 phone ... screen lock is on to require password, but on incoming calls its not locked ... how do i lock it for incoming calls too ???? thanks

    please help ... have new samsung ativ se windows 8 phone ... screen lock is on to require password, but on incoming calls its not locked ... how do i lock it for incoming calls too ???? thanks

    Personal rant, why do people write the entire problem in topic line
    It's not possible with Windows Phone 8.  What's the point, a call is coming in and the phone allows you to answer.

  • Field that is not visible in my editing screen but showing in web preview. How to remove it?

    Hi Support,
    When I preview my form in web preview, I am seeing a field that is not visible in my editing screen. It starts at the left margin of the web preview and runs off the edge of the right side of the page.
    The form is also crashing when I attempt 'page view' or 'save as pdf' and I believe this phantom field is the culprit. I have spent considerable time on the form and do not want to recreate from scratch.
    Can you please advise how I can make this field visible in the editing section so that I can permanently delete it?
    Further information:
    I do not have any rules set for any of my fields
    I have tried to remove it in Chrome, IE and Firefox
    My cache has been cleared today
    My plug-ins and flash player are all current versions (updated today and performed a restart)
    Thanks,
    Kate

    Hi Kate,
    Could you please share your form with me ([email protected]) so that I can investigate and correct this problem? Instructions on sharing can be found here:
    http://forums.adobe.com/docs/DOC-2462
    Thanks,
    Brian

Maybe you are looking for

  • Font problem in OS9

    This is a question about fonts not appearing in an OS 9 application. I am running OS 10.4.8 on an iMac G5 and have Classic (OS 9.2.2) as well. I have one (antique) program running under Classic, FileMaker Pro 4.1, that I have been using to manage mai

  • AVI movie duration in File Info?

    Whenever AVI movie is selected in Finder brief File Info is listed including Preview in right panel. It contains such fields as Kind, Size, etc. and Duration. Unfortunately Duration field of all AVI files is empty (--). Is it possible somehow to make

  • I need the manual for replacng the battery clock an old Compaq Presario 1247 laptop

    Once upon a time I had a link to a document that showed how disassemble my Compaq Presario 1247 laptop to get to the clock battery. Can anyone provide the link to retrieve that manual?

  • Upgrading Palm system on my MAC for future pda

    I have an old visor pro running with installer 3.5.3; (On the 'about palm desktop' it says "Palm 4.0". I just upgraded my mac os to snow leopard 10.6.1, and it works fine; I was actually surprised it did. syncs fine etc. However I know this 2002 viso

  • Valuation control diff

    Dear Friends when initial posting of goods using 561 i am getting an error which says valuation control in material master differs from special stock, i am posting stocks for project i e project stock Q I have maintained qty and value update from the