Who is NOT using a screen protector?

I would like to hear from people not using any screen protector. Does your screen scratch up at all with normal use? I'd rather not apply one if I don't have to. I tried the one that came with my iSkin revo2 (the best skin case out there!), but I don't like it on there. The screen doesn't look as good as it does bare.

I never used a screen protector on my 1st generation iphone and never had any issues.
On my new 3g iphone - i did put on the invisible shield on the front and back. I didn't install it on the front to protect against scratches though - I installed it on the front as the invisible shield seems to GREATLY reduce the amount of finger smudges and smears - it made a huge difference in the amount of greasy fingers smears - works like magic, and it is also so clear that I really don't notice it on there.
I also put it on the back to keep the white plastic from getting scratched - it also has a slightly sticky feel to it - just the right amount which I like.
Best Buy sells the front side of the invisible shield for $15 - alot of money for sure but it's awesome. Check this vid on youtube - pretty darn strong
http://www.youtube.com/watch?v=rQcv3ETEQdM

Similar Messages

  • Do you use a screen protector? for powerbook.

    Do you use a screen protector for your powerbooks? if so, what do you use?

    No, I thought about it and decided that a screen protector was not something I needed. The reasons:
    * Key marks are generally finger oils, not physical scratches, and are therefore not permanent and can be removed using a damp cloth and gentle pressure. I have had my PowerBook for 2 years and this has held true. Various parts of my PowerBook have deteriorated far faster than the screen.
    * I didn't want to have this additional thing to have to remove after opening the lid and to replace before closing the lid. To me that's annoying and complicates the experience. I love being able to get going as soon as I open the lid.
    * I transport the PowerBook in such a way to avoid having other items in the bag compress the lid to the keyboard. If you carry a PowerBook in a backpack with 3 classes worth of textbooks and give the bag a hard landing on the library table with the PowerBook on the bottom, well, you might make some permanent marks that way.
    * When thinking about all the things I might want/need to buy with the amount of money the screen protector would cost, I decided the screen protector was way far down on the list.
    Nothing personal to those who find screen protectors useful, but that's the reasoning I arrived at. My opinion is that screen protectors are one of the many accessories that profit from unfounded consumer anxieties.

  • Should I use a Screen Protector with Otterbox Defender or Griffin Survivor?

    I bought both of these rugged cases and keep hearing that the actual cases can scratch the phones.  Should I use a screen protector on the phone face and back as well?  I assume that may not fit in the cases if I do that.  Anyone have any experience with these cases?

    Mine
    Redwood_Empire wrote:
    I have the Ghost Armor (same as ZAGG's invisibleSHIELD) installed on my Iphone and my otterbox defender will be here today (anytime) I will let you know how it goes or how it fit as soon as my defender get delivered by FedEx.
    Do you have the shield on the front and back?  I read they do not fit in the Otterbox with both.  I would bet one side may fit.  I think if you use a thin one like the Verizon site has (PureGear Display Protectors) on the front I bet it will fit.  I have the Survivor case and have not head a chance to try the shield with it.  I got the phone, and first threw it in that case.  I know what to get a shield on it if possible.  Please let me know if it fits.

  • Are there any cons to using a screen protector?

    Hi. I'm going to be getting an Apple smart case for my new Ipad Mini today at Best Buy and wonder if I should also get a screen protector?. I've been using it without one for 5 days and like the feel of it. I know a protector would keep the screen pristine, however on my Iphone 4S it seems to diminish the display by slightly blurring it. I'm using my Mini mostly for Ibooks. The other concern I have is trusting whether BB will get it on the device right but I would not want to try myself (too worried I would make a mistake!) Thanks for your guidance and loving my Mini. Missy

    I was considering the same thing when I bought my iPad Air. I really enjoy using the iPad with no cover/case at all. The way Apple designed it. The cool aluminum and smooth glass. I understand you on those points. The same can be said for the iPhone. I have both a case and screen protector on my iPhone. I can remove the case, not the screen protector. Those aren't made to install and remove repeatedly.
    I'd prefer not to use a screen protector because of how it blurs the screen but also because it affects the "feel" of the screen. Gone is the silky smooth feeling of the glass. I got a scratch on an iPhone screen once and use a screen protector now. I carry the iPhone with me 24/7 so it needs more protection.
    My iPad Air is a different story. I also bought it at BestBuy and use it for iBooks quite a bit too! I use the new iPad Air SmartCase to protect it but haven't installed a screen protector. I haven't installed one because the screen is only vulnerable while I'm using it and is protected by the case while I carry it. I like how the display looks and feels without the screen protector on.
    The good news is, if you decide to install a screen protector, you can easily remove it if you change your mind. I hope this helps...
    Ryan

  • The application does not use the  screen and run in the background

    Hi
    I have downloaded a package of j2me Midlet
    from [link] here [link]
    and try to reuse the code
    but I get the following error when running the code:-
    The application does not use the screen and run in the background
    I think the error into one of these two classes
    package main;
    import javax.microedition.midlet.*;
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import javax.microedition.media.Manager;
    import javax.microedition.media.MediaException;
    import javax.microedition.media.Player;
    import java.io.IOException;
    import java.io.InputStream;
    public class MainMidlet extends MIDlet implements CommandListener {
        private SSGameCanvas gameCanvas ;
        private Command exitCommand ;
        private Player player = null;
        public void startApp() {
      try {
           //   create new game thread
              gameCanvas = new SSGameCanvas();
              gameCanvas.start(); // start game thread
              exitCommand = new Command("Exit",Command.EXIT,1);
              gameCanvas.addCommand(exitCommand);
              gameCanvas.setCommandListener(this);
                Display.getDisplay(this).setCurrent(gameCanvas);
       catch (java.io.IOException e)
                e.printStackTrace();
            try {
                // start sounds
                InputStream in = getClass().getResourceAsStream("/resource/startfly.wav");
                player = Manager.createPlayer(in,"audio/x-wav");
                player.setLoopCount(1);
                player.start();
            catch (MediaException ex)
                ex.printStackTrace();
             catch (IOException ex)
                ex.printStackTrace();
        public void pauseApp() {
        public void destroyApp(boolean unconditional) {
            if (player != null) {
                player.close();
            System.gc();
      public void commandAction(Command command, Displayable displayable) {
           if (command == exitCommand)
                 destroyApp(true);
                 notifyDestroyed();
    package main;
    import java.io.IOException;
    import javax.microedition.lcdui.*;
    import javax.microedition.lcdui.game.*;
    public class SSGameCanvas extends GameCanvas implements Runnable {
        protected GameManager gameManager;
        protected boolean running;
        private int tick=0;
        private static int WIDTH;
        private static int HEIGHT;
        private int mDelay = 20;
        Form mainForm;
        Display display;
        //private int MaxTime;
        public SSGameCanvas() throws IOException{
            super(true);
            gameManager = new GameManager(5,5,getHeight()-10,getWidth()-10,this);
        public void start() {
                this.running = true;
                Thread t = new Thread(this);
                t.start();
        public void stop() {
            running = false;
        public void render(Graphics g) {
            WIDTH = getWidth();
            HEIGHT = getHeight();
            // Clear the Canvas.
            g.setColor(0, 0, 50);
            g.fillRect(0,0,WIDTH-1,HEIGHT-1);
            // draw border
            g.setColor(200,0,0);
            g.drawRect(0,0,WIDTH-1,HEIGHT-1);
            // draw game canvas
            gameManager.paint(g);
        public void run() {
            while (running) {
                // draw graphics
                render(getGraphics());
                // advance to next graphics
                advance(tick++);
                // display
                flushGraphics();
                try { Thread.sleep(mDelay); }
                catch (InterruptedException ie) {}
        public void advance(int ticks) {
            // advance to next game canvas
            gameManager.advance(ticks);
            this.paint(getGraphics());
    }Edited by: VANPERSIE on Jul 10, 2012 12:26 PM

    Hi Andi,
    Thanks for your reply.
    Yes, I have waited for a while and the result doesn't change.
    The Porblem here is the application is seen started in visual administrator.Only restart brings up the page back.
    Can you please suggest anything.
    Thanks and regards
    Nagaraj

  • Good evening, my name is Ludmila I have a problem. im buy second hand iphone 5 but I can not use the screen shows asking me apple id but I do not know this is my first iphone I do not know what the police thought it was stolen or lost but I you can help m

    Good evening, my name is Ludmila I have a problem. im buy second hand iphone 5 but I can not use the screen shows asking me apple id but I do not know this is my first iphone I do not know what the police thought it was stolen or lost but I you can help me. Someone told me we should stop function Find my iphone but how?? email does not even know the first lord. It cost me 400 euros but may not use iphone. someone laugh at me because I deceived. Please help me tell me his email talk to you should stop off iCloud or ID

    Scuzati de engleza google translate

  • Can I share photostream with someone who does not use Apple devices?

    If I share a photostream with someone who does not use Apple products, will they be able to view the Photostream?

    Shared photoStreams are also available on a PC
    How do friends and family view my photos?
    Friends and family with iCloud accounts can view your photos in the Photos app on any device using iOS 6 or later; on a Mac in iPhoto 9.4 or Aperture 3.4 or later; on a Windows PC with Windows Vista or later and iCloud Control Panel 2.0 or later installed; or on a second generation or later Apple TV with software version 5.1 or later installed. They can also view your photos on the web if you enable Public Website in the settings or options for your Shared Photo Stream. Learn more about inviting people to view your shared photo streams.
    Set up instructions for the PC are in my previous link
    LN

  • Screen Saver does not use selected Screen Saver when activated

    Screen Saver does not use selected Screen Saver when activated. After "Start screen saver" elapse time has been reached, a blank black full screen is displayed. I can activate the selected screen saver by using the hot corners function. Any help with this matter will be greatfully received.

    Hi again sassey,
    You're assuming correctly. Simply change the settings so that your screen saver activates before the sleep settings.
    Hope this solves your problem...

  • Do you recommend using a screen protector for iPhone 5?

    Does iPhone 5's screen scratch easily with normal use? I'm really careful with my Apple products, but I don't want to have scratches on my screen.

    had
    2 ipod  touch never used one
    1 iphone never used one but did crack the back glass a bit a screen protector would not have helped there though
    1 ipad crack the front screen a bit from drop doubt a protector would have helped
    don't really have much in the ways of scratches on any of them but if you are the type who will try to sell
    the device  you own as soon as a new one is released then maybe both a rugged case and screen protector would be a good investment

  • Do you recommend using a screen protector with the new ipad?

    I just got an ipad with retina display.  I am wondering if I need to get a screen protector for it?

    A screen protector can also significantly degrade the touch screen experience.  I know one very talented sketch artist you does some amazing art on her iPad and she says she cannot do it on anything but a naked iPad screen as otherwise the screen looses too much sensitivity.
    They also make most stylus work poorly too, for the same reason (I use a stylus a lot with NoteShelf and Note Anytime for work stuff, and a screen protector really interfers with it).
    Just to warn you that, depending on how you use it and the type of apps you use, you may find them more or a problem then a solution to anything.

  • Using Laptop Screen Protectors like OWC brand

    Does anyone use OWC's Laptop Screen Protector? I recieved mine today and put it inside my macbook pro but it seems like it shouldn't even be there because the laptop is rather hard to close, almost have to give it a good little push for the case to lock when the LSP is in there.
    Anyways, I'm using it to keep my macbook mint while its running in clamshell mode. Also, i think my macbook pro is running hotter with the LSP inside the notebook but it could be my imagination. Is there a problem with the LSP sitting inside while its running? Should a LSP only be used when the computer is alseep/powered off and closed?
    If anyone can comment from experience that'd be awesome!
    2.16 C2D MBP 2GB   Mac OS X (10.4.8)  

    I would only use it during transport. Mac are notorious for screen damage from vibrations while traveling as are many others laptops.
    If it is closed while running you are already insulating it if I recall OWC is not a breathable fabric and these units are running too hot as it is.
    If you absolutely must have something there while the unit is on your desk I would find something that allows for airflow in/out of the keypad. But I never travel without it. I just use the one that is shipped w/the unit.
    FWIW
    W1

  • Caution iP4 User's Using InvisiShield Screen Protector

    The great news is that the below mentioned vendor's are aware of what I am about to share and are fully supporting iP4 User's incurring the issue at no additional charge.
    My caution involves those iP4 users having installed the InvisiShield screen protector and attempting to place the iFrogz Luxe case on it, as it will inadvertently lift-up the lower corners of the Shield protector when you slip it into the lower portion of the case. Again, iFrogz is aware of this and are working on a retro fit of this case, issuing Gift Codes for replacement cases when they are available.
    Note: according to iFrogz, the issue has to do with the internal felt padding in their Luxe case being a little too thick, creating this issue. I used the iFrogz Luxe with my iP3G for two years and its a Great Case, leading me back to it again with my iPhone.
    As for InvisiShield, they honor their life time warranty and replaced my Shield at No Cost to me, and I still highly recommend their "Shield" as the best screen protector on the market.
    With that, I have also discovered another iP4 case which was even more devastating to my InvisiShield screen protector, which was the Belkin Grip Edge Premium Leather Shell case. Another great fitting and feel case for the iP4, leaving one to feel like there isn't an attached case. Unfortunately, the CS person I spoke with at Belkin was rather flippant leaving me the impression I can return the case, period, which I will reluctantly do since it is a great case otherwise, but doesn't meet my need for the InvisiShield.
    For those wondering why I attempted the purchase of another case... I just feel better having my iP4 protected in a streamlined case despite carrying it in my pocket. Unfortunately, despite explaining my concerns with the AT&T store rep having the Shield on it, he impulsively inserted my iP4 into the Belkin case with reckless abandon, lifting all sides of my InvisiShield protector...
    Although creating another nuisance for me in having to replace my Shield again, I must reinforce that AT&T will reimburse both cases without question.
    If your still with me... there is one more cautionary note I want to pass along to those of you awaiting the APPLE "bumper" to be shipped and that is, Prior to randomly placing it on your iP4 with the Shield on it, beware that APPLE may not have (nor should they have to take into consideration) considered the potential consequences of those users with Shield protectors on their iP4's when applying these cases or bumpers... so be very careful before placing your bumper case on your iP4. I have submitted this as Feedback to APPLE today as a caution and hopefully they will add this to a Disclosure note to the rest of us. I love my iP4 and have not experienced any of the expressed antenna issues reported... seeing I am still using it without a case and bumper awaiting my iFrogz case

    ironman1964, great observation... I personally believe there are a few variables coming into play... with the glass you mentioned being one and the chrome lip... although, having just looked at my teens 3GS, I noted the chrome lip your referring to, but there is still a small portion of the 3GS's screen which rises above the chrome which would be exposed to the sides of the Luxe case. All kinda mute when we compare against the new design of the iP4... so I am focused more on the glass top of the new iP4 screen as being incompatible with Zagg Shield? I must admit some ignorance here, but is the iP3(3GS) screen made up of a different material than the iP4? (non-glass vs glass??). If so, may be a whole other variable to consider why the Zagg Shield isn't adhering as well on the iP4, thereby not withstanding the slightest torque on its sides and corners??
    The "tight fit" you refer to is due to the internal padding on the iFrogz Luxe case doesn't help... so hopefully their thinning it down will resolve the issue without compromising a snug enough fit in holding the phone in place.
    The other observation I made was that the front side edges of the Luxe case "wraps around" more of the front edges of the iP4 then its 3G/GS predecessor Luxe case, which encroaches more on the Zagg Shield, causing its lower corners to catch and lift as you slide the iP4 into the lower section... likewise the top section of the iFrogz case doing the same when you slide it onto the iP4.
    I have my iFrogz "gift code" and just waiting for their newly released retro-fitted case. I will report again as soon as I receive it. Thanks for replying back

  • Should I use a screen protector for an iPhone 6 Plus?

    I just bought an iPhone 6 Plus and can't decide if I want/need a screen protector on it. I take great care of my phones and do not set it carelessly down on any surface.

    Yes.
    We were going without for the first time, and after only 2 weekes,  my wife just showed me a hairline scratch on hers.  She says it could not possibly have happened, but it did.
    I just ordered screen protectors for both of ours.

  • HT203671 What if I use a screen protector together with the keyboard top case?

    Does a screen protector keep the screen from being damaged by a keyboard top case?
    According to some saying, the screen could be damaged by any accessory between the keyboard and screen because there is a coating on the screen. Then anything between the keyboard and screen would hurt the coating the leave a scratch on the screen. So if I put a protector onto the screen, does it protect the coating from being hurt? Or does the back-adhesive protector itself hurt the coating (because it is adhesive)?

    So I'm sure you're aware of this:
    My Retina Display has stain damage, HELP!!!
    So if you're aware of that then you know there is a total controversy about this problem.
    "Does a screen protector keep the screen from being damaged by a keyboard top case?"
    Some people there swear by them and some people say "anything between the keyboard and screen would hurt the coating"
    So I would say "absolutely maybe!"
    Sorry to be like that but we have so little information about this problem.
    "does the back-adhesive protector itself hurt the coating (because it is adhesive)?"
    I would say to avoid anything that has an adhesive on it. Some people have said that they cover their keyboard with a microfiber cloth but again I would say "this is purely anecdotal hearsay not based on science or actual testing."
    I feel this problem is caused by outgassing of the keys or plastic in the computer.
    If we knew more about the nature of the coating then maybe we'd have a course of action. I'd research the coating and see if there was a way to protect it.
    Good luck!

  • Can not use default screen saver with this version of Mac OS X

    Hello,
    I created a 10.6.4 image on a Mac Pro that I have installed on a new 27" iMac. Every thing works fine, as expected, except the screen savers (all Apple default). All screen savers appear in the list when booted off the Mac Pro, but when booted off the iMac, all but 2 disappear (Computer Name and Flurry). Also, the ones listed under Pictures show up, but when I try to use one it says "Can not use 'screen saver name' with this version of Mac OS X - Contact your vendor."
    Also, the flurry screen saver runs extremely slow.
    Unfortunately, I don't have another iMac to compare versions with, but I've compared with a new Macbook Pro and they are exactly the same. Is there a cache or a pref I can flush?

    The old screensavers were about the first things that didn't work when moving to Snow Leopard, so my guess would be the iMac is booting in 32-bit vs 64-bit mode (or whichever mode is incompatible with your screensavers).

Maybe you are looking for