As i turn the phone to the side, how can i make the screen turn also?

i cant find in the settings anywhere. my screen will not move as i adjust the phone. please let me know where in the settings i can change this

What is displayed on the screen when you are trying to turn it? Can you check Control Center to see if you have the Rotation Lock activated. Some apps do not support a change to the screen orientation.

Similar Messages

  • When putting an event on my iPhone calendar and the time, when it goes to iCloud to my laptop or iPad calendar the times are different.  How can I make the time the same?

    When putting an event and the time on my iPhone calendar, when it goes to iCloud to my laptop or iPad calendar the times are different.  How can I make the time the same?

    Welcome to the Apple Community.
    Is the calendar you are adding events to on the phone an iCloud calendar.

  • I need to play a song on a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through the whole presentation ? Thanks.

    I need to play a song in a row in a Keynote presentation, how do I do this ? I use to drag and drop the mp3 in Keynote but it stops playing when the slide move to the other one... how can I make the song keep playing through out the presentation ?
    Thanks.

    Drag the file into the audio window in the Document inspector...

  • How can i make the order in PDF?

    Dear experts,
    Can any one help me with user exit or BADI to obtain the number spool the order (ME23N) when save the order. I need converted the order in PDF.
    How can i make the order in PDF?.
    Thanks in advence,
    Regards,
    Alejandro.

    open the print program associated with output type and make changes to get pdf.
    see these link for code
    [smartform pdf|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/smartform%2boutput%2bto%2bpdf%2bformat]
    [scriipt pdf|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/abap/converting%2bscripts%2boutput%2binto%2bpdf%2bform]

  • Pop Up - how can I make the window in the backround visible?

    Hi,
    when I create a popup, the window in the background becomes unvisible as long as the popup is not closed. how can I make the background window become visible when the popup is open?  I can hardly believe, that such a basic feature is not supported. But on the other hand, I also have some problemes with the sizing of the pop up...
    Help is highly appreciated.
    Kind Regards
    Felix

    ...just found this thread. And I am not very happy about what I read. Is your system 701 or higher?
    Re: Confirm Popup in Web Dynpro, window size
    Cheers
    Felxi

  • How can I make the combo box turn to the value of black.

    When the show button is pressed (and not before), a filled black square should be
    displayed in the display area. The combo box (or drop down list) that enables the user to choose the colour of
    the displayed shape and the altering should take effect immediately.When the show button is pressed,
    the image should immediately revert to the black square, the combo box should show the value that
    correspond to the black.
    Now ,the problem is: after I pressed show button, the image is reverted to the black square,but I don't know
    how can I make the combo box turn to the value of black.
    Any help or hint?Thanks a lot!
    coding 1.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class test extends JFrame {
         private JPanel buttonPanel;
         private DrawPanel myPanel;
         private JButton showButton;
         private JComboBox colorComboBox;
    private boolean isShow;
         private int shape;
         private boolean isFill=true;
    private String colorNames[] = {"black", "blue", "cyan", "darkGray", "gray",
    "green", "lightgray", "magenta", "orange",
    "pink", "red", "white", "yellow"}; // color names list in ComboBox
    private Color colors[] = {Color.black, Color.blue, Color.cyan, Color.darkGray,
                              Color.gray, Color.green, Color.lightGray, Color.magenta,
                              Color.orange, Color.pink, Color.red, Color.white, Color.yellow};
         public test() {
         super("Draw Shapes");
         // creat custom drawing panel
    myPanel = new DrawPanel(); // instantiate a DrawPanel object
    myPanel.setBackground(Color.white);
         // set up showButton
    // register an event handler for showButton's ActionEvent
    showButton = new JButton ("show");
         showButton.addActionListener(
              // anonymous inner class to handle showButton events
         new ActionListener() {
                   // draw a black filled square shape after clicking showButton
         public void actionPerformed (ActionEvent event) {
                             // call DrawPanel method setShowStatus and pass an parameter
              // to decide if show the shape
         myPanel.setShowStatus(true);
                   isShow = myPanel.getShowStatus();
                                            shape = DrawPanel.SQUARE;
                        // call DrawPanel method setShape to indicate shape to draw
                                            myPanel.setShape(shape);
                        // call DrawPanel method setFill to indicate to draw a filled shape
                                            myPanel.setFill(true);
                        // call DrawPanel method draw
                                            myPanel.draw();
                             myPanel.setFill(true);
                             myPanel.setForeground(Color.black);
                   }// end anonymous inner class
         );// end call to addActionListener
    // set up colorComboBox
    // register event handlers for colorComboBox's ItemEvent
    colorComboBox = new JComboBox(colorNames);
    colorComboBox.setMaximumRowCount(5);
    colorComboBox.addItemListener(
         // anonymous inner class to handle colorComboBox events
         new ItemListener() {
         // select shape's color
         public void itemStateChanged(ItemEvent event) {
         if(event.getStateChange() == ItemEvent.SELECTED)
         // call DrawPanel method setForeground
         // and pass an element value of colors array
         myPanel.setForeground(colors[colorComboBox.getSelectedIndex()]);
    myPanel.draw();
    }// end anonymous inner class
    ); // end call to addItemListener
    // set up panel containing buttons
         buttonPanel = new JPanel();
    buttonPanel.setLayout(new GridLayout(4, 1, 0, 50));
         buttonPanel.add(showButton);
    buttonPanel.add(colorComboBox);
    JPanel radioButtonPanel = new JPanel();
    radioButtonPanel.setLayout(new GridLayout(2, 1, 0, 20));
    Container container = getContentPane();
    container.setLayout(new BorderLayout(10,10));
    container.add(myPanel, BorderLayout.CENTER);
         container.add(buttonPanel, BorderLayout.EAST);
    setSize(500, 400);
         setVisible(true);
         public static void main(String args[]) {
         test application = new test();
         application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    coding 2
    import java.awt.*;
    import javax.swing.*;
    public class DrawPanel extends JPanel {
         public final static int CIRCLE = 1, SQUARE = 2;
         private int shape;
         private boolean fill;
         private boolean showStatus;
    private int shapeSize = 100;
    private Color foreground;
         // draw a specified shape
    public void paintComponent (Graphics g){
              super.paintComponent(g);
              // find center
    int x=(getSize().width-shapeSize)/2;
              int y=(getSize().height-shapeSize)/2;
              if (shape == CIRCLE) {
         if (fill == true){
         g.setColor(foreground);
              g.fillOval(x, y, shapeSize, shapeSize);
    else{
                   g.setColor(foreground);
    g.drawOval(x, y, shapeSize, shapeSize);
              else if (shape == SQUARE){
         if (fill == true){
         g.setColor(foreground);
                        g.fillRect(x, y, shapeSize, shapeSize);
    else{
                        g.setColor(foreground);
    g.drawRect(x, y, shapeSize, shapeSize);
    // set showStatus value
    public void setShowStatus (boolean s) {
              showStatus = s;
         // return showstatus value
    public boolean getShowStatus () {
              return showStatus;
         // set fill value
    public void setFill(boolean isFill) {
              fill = isFill;
         // set shape value
    public void setShape(int shapeToDraw) {
              shape = shapeToDraw;
    // set shapeSize value
    public void setShapeSize(int newShapeSize) {
              shapeSize = newShapeSize;
    // set foreground value
    public void setForeground(Color newColor) {
              foreground = newColor;
         // repaint DrawPanel
    public void draw (){
              if(showStatus == true)
              repaint();

    Hello,
    does setSelectedIndex(int anIndex)
    do what you need?
    See Java Doc for JComboBox.

  • HT1203 Can I share one iTunes account for my iPad and two I phones? If so, how can I get the purchased apps and music on all three devices? Do I need a home computer,

    Can I share one iTunes account for my iPad and two I phones? If so, how can I get the purchased apps and music on all three devices? How do I sync all the devices to have the same music and apps?

    You can set up an iCloud account on each one (the SAME iCloud account using the same AppleID on each) and then sync via iCloud.
    http://support.apple.com/kb/HT5262\
    However, an iCloud backup nor sync contains purchased content - that is available for redownload from the iTunes and App stores (so no need to waste iCloud space storing it for you).
    So, for purchased content, you will have to download it on each device - just use the same AppleID and download each item on each device.
    Without a computer to aid the sync'ing, downloading the purchased content on each device is the only way.
    P.S  audiobooks cannot be re-downloaded once purchased (all other content can be), so without a computer to save, store and move the audiobook files around, you will only be able to put those on one device - the one you first purchase it on.

  • I had to restore my iPhone 4s and now my recent calls show only phone numbers instead of the contact's name.  How can I restore the names to my recent calls list?

    I had to restore my iPhone 4s and now my recent calls show only phone numbers instead of the contact's name.  How can I restore the names to my recent calls list?

    Are the contact details in your contacts app, the phone app uses the contact app to put names against telephone numbers.

  • My iphone 4s got water in the headphone port. I put my phone in rice for 24 hours and the LED light is on. It stays on even when the phone is off. How can I fix it with out spending 200 bucks at apple to have them fix it?

    My iphone 4s got water in the headphone poert. I put my phone in rice for 24 hours and the LED is on. It stays on even when the phone is off. How can i fix it without taking it to apple and spendding 200 dollars to have them fix it?

    Short answer is you probably cannot.  Once water gets inside the device and it is powered on, the damage likely is permanant. 

  • HT1677 iOS 7 for iPad the bookmarks tab is now on the top right hand side how can I change this back to the top left hand side as in the previous versions?

    iOS 7 for iPad the bookmarks tab is now on the top right hand side how can I change this back to the top left hand side as in the previous versions? Thanks

    Sorry but you can't

  • I have entered the wrong numbers to put my phone in pass code lock.  However, I didn't set the autolock....how can I get the pass code lock reset?

    I have entered the wrong numbers to put my phone in pass code lock.  However, I didn't set the autolock....how can I get the pass code lock reset?

    Your only choice is to place the phone in DFU mode (search Google for instructions) and restore as a new device.  You will lose all your data.

  • On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    On my Mac desktop I must have changed a setting so that now when I move the mouse the open windows fly off to the sides and I can't see them. They come back when I move the mouse, but it is so annoying. How can I make the windows not disappear like that?

    Click on the Hot Corners..  button and look at the four definitions.  In the picture below, if you moved the cursor to the right top of the screen, it would slide all the applications off the screen as you describe and show the desktop.  Set it to "-" to deactivate.

  • I cannot sync my newer contacts I have created on my iPhone to the iCloud so they do not appear in iMessage on my Mac. Only the phone number does. How can I fix this?

    I cannot sync my newer contacts I have created on my iPhone to the iCloud so they do not appear in iMessage on my Mac. Only the phone number does. How can I fix this?

    okay. I looked and my default account and it is my mobile me account... how do I transfer those to the cloud?

  • I have been using numbers spreadsheet to do my time card. When I delete the info on my spreadsheet to change the info for the new week the dark grid lines turn to a light gray.  How do I make the lines dark again?

    I have been using a spreadsheet in numbers to do my time card. When I delete the info on my spreadsheet to change for the new week the dark grid lines turn to a light gray.  How do I make the lines dark again?

    Change the email on the old account to another new, current email address.
    An email address can only be linked to one Apple ID.
    It is possible to have content from multiple Apple ID's on a single iDevice.

  • I recently had my iPhone 5c screen replaced. When I switch the phone on all I can see is a dark blue/navy backlight on the screen. The phone powers on although I can't see the apple logo. I can ring the phone a bad Siri is fully functional.

    I recently had my iPhone 5c screen replaced. When I switch the phone on all I can see is a dark blue/navy backlight on the screen. The phone powers on although I can't see the apple logo. I can ring the phone a bad Siri is fully functional. 
    I Have tried to soft rest it but it does not work.
    can anybody help?

    Belly114 wrote:
    Unfortunately because you have violated the warranty - it will cost £216.44. See https://www.apple.com/uk/support/iphone/repair/screen-damage/
    Unfortunately, since an unauthorized party opened it, Apple won't have anything to do with it at all. It's not eligible for an out of warranty replacement.

Maybe you are looking for