Results 1 to 10 of 10

Thread: Want to get rid of the 3 dots on my HTC One X

  1. #1
    Join Date
    Mar 2012
    Posts
    30

    Want to get rid of the 3 dots on my HTC One X

    I bought an HTC One X and it fell it to my hands yesterday morning. Very excited about the lovely phone. It’s been working awesomely good as of now. But there is one super annoying thing about it- the 3 stupid dots that kills the looks of every app, every game. Can anyone please fix it for me? Is there any way to do that at the first place? If not, ‘HTC, you’ve messed it up there.’

  2. #2
    Join Date
    Mar 2011
    Posts
    1,341

    Re: Want to get rid of the 3 dots on my HTC One X

    I understand! They are extremely annoying, I know that. Especially because they appear in almost every game and app making it look like a part of the hardware. No user will like it for the simplest of reasons that people are actually looking out for complete usage of screen and even a millimeter wastage looks irritating.

    However, the cause of the issue is not HTC as you are assuming it to be. It is ICS. These dots appear when the applications are not optimized for ICS and as of now, there’s no fix to this. Hope to find one soon. Will definitely report it to you if I find one.

  3. #3
    Join Date
    May 2011
    Posts
    1,665

    Re: Want to get rid of the 3 dots on my HTC One X

    I so agree to both of you. It’s ridiculous to having skipped such a bug while application and OS development. Try doing this, I have not tried but I think it’ll serve your purpose. What you can probably do is remap the task manager to menu by which you can long press for task manager. I don’t really think one uses task manager very often anyways.

  4. #4
    Join Date
    Mar 2012
    Posts
    30

    Re: Want to get rid of the 3 dots on my HTC One X

    As of now, there’s no fix to this
    That’s disappointing!

    Is remap the task manager to menu by which you can long press for task manager. I don’t really think one uses task manager very often anyways.
    It was a very generous gesture of you to trying to provide me with solution. But the problem is not task manager or opening menu. Obviously it is! But a secondary one! Right now, my prime concern is how to remove that stupid menu (3 dots) from my apps. What you said is an alternative to the 3 dots but how to remove it, at the first place?

  5. #5
    Join Date
    May 2011
    Posts
    1,665

    Re: Want to get rid of the 3 dots on my HTC One X

    Oh! I see but I can’t really think of a solution to that. But I would still recommend you to try modifying system/user/keylayout/qwerty.kl so that the hardware key is changed to menu from APP_SWITCH.

    I think you should also try the solution I gave in my previous post, the reason being that maybe after having a hardware key to menu, it’ll think of discarding the application disturbance key for menu. Just try, what if it works! You hardly have anything to lose.

  6. #6
    Join Date
    May 2011
    Posts
    1,863

    Re: Want to get rid of the 3 dots on my HTC One X

    He’s right! You should definitely give it a try. Let me give you an alternate solution to this:
    Make changes in the source code related to APP_SWITCH

  7. #7
    Join Date
    Mar 2012
    Posts
    30

    Re: Want to get rid of the 3 dots on my HTC One X

    If you all are insisting, I’m willing to give it a try but please tell me what do you mean by
    Make changes in the source code related to APP_SWITCH
    I mean, what changes are you trying to indicate by this?

  8. #8
    Join Date
    May 2011
    Posts
    1,863

    Re: Want to get rid of the 3 dots on my HTC One X

    To Make changes in the source code related to APP_SWITCH, go to PhoneWindowManager.java and change the code:

    } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
    if (down && repeatCount == 0) {
    showOrHideRecentAppsDialog(RECENT_APPS_BEHAVIOR_SHOW_OR_DISMISS);
    }
    return -1;
    }

    To
    } else if (keyCode == KeyEvent.KEYCODE_APP_SWITCH) {
    if (down && repeatCount == 0 && !keyguardOn) {
    try {
    mStatusBarService.toggleRecentApps();
    } catch (RemoteException e) {
    Slog.e(TAG, "RemoteException when showing recent apps", e);
    }
    }
    return -1;
    }

  9. #9
    Join Date
    Mar 2012
    Posts
    30

    Re: Want to get rid of the 3 dots on my HTC One X

    Done deal! And agreed! I don’t really mean to be pestering you but could you please tell me how do we open this PhoneWindowManager file? Where do I find it?

  10. #10
    Join Date
    May 2011
    Posts
    1,863

    Re: Want to get rid of the 3 dots on my HTC One X

    Simple it is, just follow the following instructions:
    o Go to platform
    o Click on frameworks
    o Move to base
    o Go to policy
    o Then, src
    o Followed by com
    o Click on Android
    o Go to internalpolicy/impl
    o Open PhoneWindowManager.java

Similar Threads

  1. Video glitches and dots with MSI GTX 580 OC
    By Chane in forum Monitor & Video Cards
    Replies: 6
    Last Post: 09-01-2012, 10:43 PM
  2. I am getting white dots in Samsung UN46D8000 LED
    By Suu!Shant in forum Monitor & Video Cards
    Replies: 6
    Last Post: 21-08-2011, 10:55 AM
  3. White dots on Samsung DLP HLT5076SX/XAA
    By Aaryan2011 in forum Monitor & Video Cards
    Replies: 6
    Last Post: 20-08-2011, 10:12 PM
  4. Mage dots vs. cleric dots in RIFT
    By Common in forum Video Games
    Replies: 6
    Last Post: 10-05-2011, 10:14 AM
  5. Xbox 360 white dots on screen
    By Galimberti in forum Video Games
    Replies: 6
    Last Post: 09-06-2010, 03:42 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,884,550.11396 seconds with 17 queries