HTC Desire HD :: Screen Detecting Ghost Touches

Nov 24, 2010

After much waiting for my desire HD I was (and am) really pleased with it. However in the last couple of days my screen appears to be detecting a second touch which pretty much prevents me playing games and is a real hindrance when typing. I could accept this if it were the gel protector or my hand running over the side of the screen, but it seems to be around the "rtuio" bit of the keyboard when holding the phone in portrait mode (i.e. the centre). I do have a screen protector on there but there are no air bubbles or anything visible underneath it. So yeah, has this been raised before? I couldn't find anything. Do I need to recalibrate the screen somehow?

HTC Desire HD :: Screen Detecting Ghost Touches


Android :: Detecting User's Touches Over An OpenGL Square

Nov 11, 2010

I'm developing an Android application.I'm also working with OpenGL graphics.I have a square drawn on the screen and I want to let user move it when he touches over it. In other words, user should be able to move square when he puts his finger on the square.If he touches outside the square nothing happens.How can I detect when user touches over square?

View 2 Replies View Related

Android :: DropDown Leaves Several Ghost Elements On Screen

Jun 24, 2010

When typing in an AutoCompleteTextView, when the list shrinks because the number of matches goes down, the DropDown leaves several "ghost" elements on the screen. This only seems to happen when an IME is visible, and visually, it appears to be limited to the area that shows the autocomplete suggestions for the input method, so quite possibly it's happening in what is part of the IME's layout. This occurs in 2.0.1, 2.1 and 2.2 emulators, and most likely on devices as well (confirmed at least on Milestone running 2.1- upgrade1). It _does not_ seem to happen in an 1.6 emulator.

View 2 Replies View Related

HTC Desire :: Phone Managed To Make Ghost Calls

Aug 24, 2010

My HTC Desire has developed a strange habit of making ghost calls. The phone has been on charge this morning and it has still managed to call my home number and my wife's mobile without any human intervention.

View 10 Replies View Related

HTC Incredible :: Phantom Screen Touches A Little

Apr 29, 2010

Mine just started registering phantom screen touches a little while ago.It seems to think there is either and up-swipe or some kind of touch near the top of the screen randomly. For example, an email or list will constantly be scrolling up or if I leave it on a screen with Power Panel on it, one of the icons will randomly highlight orange. The page with the google search widget will have the search field highlight orange on it's own too. When entering text, the cursor will randomly jump back to the beginning.

View 6 Replies View Related

HTC EVO 4G :: Cheek Touches Screen And Changes Stuff While Talking

Jun 24, 2010

I've never had a smartphone YET, but my daughter has a Droid and says she hates that when talking on it, her cheek touches the screen and changes stuff while talking. She's new to the phone itself, so is she doing something wrong or is this just a con of smartphones? Or is this a Droid thing and not an EVO thing?

View 13 Replies View Related

Android :: Intercepting Screen Touches During Game

Jun 15, 2010

What's the best way of intercepting screen touches and coords during a game loop? At this point, I don't have a View from my main.xml file, so the normal OnTouchEvent doesn't apply, as far as I can tell. What's the usual procedure for this?

View 2 Replies View Related

HTC Desire :: Soft / Light Touches Like IPhone

Sep 23, 2010

I plan to get an HTC Desire soon and have one last question on mind.The best phone I've used so far is the iPhone. If anyone's used/compared the iPhone and Desire with a hands-on experience, could you please let me know how well the touch sensitivity/responsiveness of the HTC Desire compares with the iPhones? i.e. does it respond as well to soft/light touches as the iPhone does? Also, how well would you place the touch sensitivity (good, better, best, equal) for Apple iPhone, HTC Desire, Samsung Galaxy i9000, if you've personally experienced all 3, or any 2 of them.I haven't been able to get my hands on one unfortunately. This seemed to be the only way left to find out.

View 9 Replies View Related

Android :: Draw Circle When User Touches Screen

Aug 1, 2009

I've this code:

Java: (http://nopaste.me/4449 )
package com.patrick.games.whackgroundhog; import android.app.Activity;
import android.content.Context; import android.graphics.Canvas;
import android.graphics.Color; import android.graphics.Paint;
import android.os.Bundle; import android.view.MotionEvent; import android.view.View;
public class Game extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); setContentView(new Ground(this));
} class Ground extends View { public Ground(Context context) { super(context);
} public void onDraw(Canvas canvas) { canvas.drawColor(Color.BLACK);
} @Override public boolean onTouchEvent(MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
//TODO: draw the circle } return true;
} } }

View 2 Replies View Related

Android :: Can View Appear At Location Where User Touches Screen

Nov 19, 2010

I'm new to android development. Is it possible for a view (with a particular layout) to "appear" at the location where the user "touches"? If so, how? Like the idea of right-clicking on your computer - a menu pops down wherever you right-click and when you navigate away, it disappears.

View 1 Replies View Related

General :: Touch Screen Doesn't Respond On Touches

Apr 5, 2014

I have a xi electronics chinese crappy tablet, it came pre rooted. So I changed he cpu governor and I pressed apply, after that it stuck , and I needed to reboot using power and vol -It booted up but now my TouchScreen doesnt respond on my touches!, I have already tried factory reset using adb , didn't work.

View 8 Replies View Related

Android :: Changing Drawing With OpenGl When User Touches Screen

Nov 10, 2010

I'm developing an Android application. I'm very new on it. I have the following classes:
class CustomGLSurfaceView extends GLSurfaceView
class CustomRenderer implements GLSurfaceView.Renderer
CustomGLSurfaceView uses CustomRenderer to render a cube on onDrawFrame method.

I've added an onTouchEvent(MotionEvent event) on CustomGLSurfaceView to manage touch events:
class CustomGLSurfaceView extends GLSurfaceView {
// For touch inputs - previous touch (x, y)
private float previousX; private float previousY;
private CustomRenderer myRenderer; public CustomGLSurfaceView(Context context) {
super(context); myRenderer = new CustomRenderer(); setRenderer(myRenderer);
} @Override public boolean onTouchEvent(MotionEvent event) {
float currentX = event.getX(); float currentY = event.getY();
switch (event.getAction()) { case MotionEvent.ACTION_MOVE:
myRenderer.handleMovement(currentY, currentY, previousX, previousY);
} // Save current x, y
previousX = currentX; previousY = currentY;
return true; // Event handled } }

May I have to modify onDrawFrame to draw something new or to rotate the cube? I thing I must do it on handleMovement.

View 1 Replies View Related

Android : Application And Have Multiple Images - Need To Switch When User Touches The Screen

Feb 4, 2009

Here is the problem, I am building an application and have multiple images that need to switch when the user touches the screen, doesn't matter where the users touches. The press the screen and the images switch randomly. I purchased the ebook "Professional Android Application Development" and have torn though it. I am stumped. I'm thoroughly confused at this point. Any ideas on where I can go or how I can accomplish this?

View 11 Replies View Related

HTC Desire :: SD Card Not Detecting / How To Do

Nov 13, 2010

My HTC desire phone,, after upgrading new 2.1 to 2.2 software, it suddenly stops detecting SD card slot and error in WiFi as well. Can anybody please tell me what is the problem?

Mount SD card & Format SD card is not highlighted, I can see but can not tap on it. Same SD card is detecting and working perfectly with my laptop.

View 2 Replies View Related

HTC Desire : USB Is Not Properly Detecting

Sep 15, 2010

I tried in multiple laptops of windows 7, my htc desire 2.1 USB sometimes doesn't detect at all.Its totally weird, out of 10 times try, its work for one time. Sometimes its auto disconnect,in mid of file transfer.Even i tried to installed android USB drivers, but no use. Any solution for this.

View 4 Replies View Related

HTC Desire :: Usb Disk Drive Not Detecting

Sep 1, 2010

In windows7 new htc desire usb behaving weird, can't see disk drive. Even htc sync can't connect. sometime out of 100 times its detects 1 or 2 times. Any setting to be done?

View 5 Replies View Related

HTC Desire :: Phone Not Detecting Computer - Can't Sync Music

Jul 28, 2010

I have an urgent problem with my desire and would appreciate any help. My desire is not detecting my computer when I connect the USB, I connect it and it begins charging instead of asking me about the connection type. As I was puzzled and thought this was very strange, I checked the "connect to PC" settings only to find out the "ask me" option was indeed enabled . When I connect the USB to the computer it begins charging and displays "USB" on battery status, but it does not actually detect the computer, nor does the computer detect the phone (even when I change the default connection type to "disk drive" it continues on charge mode). Has anyone any clue as to what is wrong with my desire? I am very confused because as I said, I select the "ask me" option but it does not "ask me", I really want to fix this as it means I cannot sync music onto it, any ideas?

View 19 Replies View Related

Android :: Detecting Slow Or Unavailable Network And Black Screen

Jul 21, 2010

My application for the most part prefers to be online, I have of course added an offline mode so that it works perfectly well when not attached and then re-syncs when connected again.I do, however, have an issue with the initial start of the main activity "black screening" on me while (i assume) it is waiting on a TCP timeout.It would be nice to query and skip the download step if the network is super slow.

View 2 Replies View Related

HTC Hero :: Ghost Headset Not Connected

Aug 9, 2010

My Hero detects a headset even though it's not connected. If I plug in my headphones it switches to headphone mode, but as soon as I disconnect them it switches back to headset mode. (making me unable to use my phone to make phone-calls) Does anyone know how to fix this problem?

View 6 Replies View Related

Android :: How To Delete Ghost SMS Messages?

Oct 16, 2010

The case is I have many SMS messages that have a date of 1 Jan 1970, AKA Ghost messages. My mobile is HTC Magic, and I am using Cyanagonmod 6.0 on it. I believe this problem happened when I used MyPhone Explorer app to delete my old messages straight from my PC. Well, I gotta admit that not all the messages I deleted through that app did the same behavior? So, I am not pretty sure of the scenario by which it caused this problem, however I am pretty sure that It's because this application. What I need now is some way or an app that can clear those ghost messages from my Phone. They don't appear when I search for them using MyPhone Explorer. Also, I tried an application called CleanMessages which delete messages based on some criteria (for example date) but it also can't detect them.

View 17 Replies View Related

Android :: Ghost Radar App For Phone

Oct 21, 2009

My buddy has "Ghost Radar" in his iPhone and I want it or something similar for my HERO....does anyone know of something comparable and compatible?

View 4 Replies View Related

HTC Droid Eris :: Gmail App Inbox Ghost Messages

Mar 2, 2010

In my Gmail app, I have messages showing up in my Inbox that are *no longer* in my actual Inbox.There are a couple of messages I have since deleted, or moved to another folder, or archived that are still showing up.I keep refreshing, and these 'ghost' messages still show up.Just to be clear, when I go to gmail.com in my browser, these messages are *not* in my Inbox.They are only showing up in my Gmail app Inbox.I'll take any suggestion that doesn't require me factory resetting my phone

View 4 Replies View Related

HTC EVO 4G :: Contemplating EVO Root For WiFi Tethering And Complete - Ghost Back Up

Oct 13, 2010

I have been contemplating rooting my Evo for some time for the reasons mentioned in the title. I have read rave reviews for WiFi tethering all over this forum and will definitely take advantage of it. Secondly, I have heard that when the Evo is rooted you can create back up, with Nandroid or Titanium, and it is a ghost/clone of the entire phone (settings, apps, app data/pointers, etc.). I have had to replace my phone a few times now for factory defects and it has caused tremendous pain to lose some of the app data that I had stockpiled in the 3 months since my last replacement. In the event of having to replace my phone again after rooting it, would I just have to root the new Evo and flash the last back up and ROM (stock or not) that I was using?

View 2 Replies View Related

HTC EVO 4G :: Inaccurate Touches In Message Directory?

Nov 5, 2010

Anyone notice a change since the last update with inaccurate touches in the TM directory?I've lost count on how many times I'd touch on one person to text and it brings up someone completely different.

View 6 Replies View Related

General :: Ghost App Showing Installed On Google Play Store Website

Aug 4, 2013

I have a Nexus 7 & a HTC Desire...I have cleared cache, cleared data and force stopped Google Play Store on both devices....an APP called Easy Money doesnt show up at all on either device....but on Google Play Store website it constantly shows as installed and I can't delete it from the list at all...I think it is causing problems stopping my devices from showing all my APPS in play store..I have tried installing and uninstalling it on both devices also but still no joy getting rid of it from the Play website.

View 1 Replies View Related

Android :: Rotated Map View - Get The Touches Back To Where They Belong

Feb 24, 2010

I am using the MapsDemo example for a mapping application where I rotate the map in direction of travel. This works well even without the canvas smoothing in the example.

However, I haven't yet managed to adjust the dispatchTouchEvent code to counter the map rotation effect for the user touches (right now when the map is rotated 90 degrees a user's horizontal sweep will move the map vertically etc). The sample code only offers the teaser:

CODE:..........

And while I am at it - Is it still possible to position the zoom controls separately, so that they do NOT rotate when the map rotates? I read that the getZoomControls() is deprecated.

View 2 Replies View Related

KitKat 4.4 :: Phone Spazzing / Recognizing Touches That Aren't There?

Apr 21, 2014

my phone has been randomly spazzing out. I have a LG G2 with 4.4.2

It will slide left to right, open and close apps, etc. without me touching it.

It will go periods of time without doing this, then not stop doing it for a good few minutes. i did just factory reset it, but it is still doing the same thing.

View 1 Replies View Related

General :: App That Makes Touches Visible - Not Touch Tester App

Apr 11, 2014

I am looking for an app, that makes the touches visible.

I do not mean a Touch-Test App, but one that creates an Overlay and displays the touches, with variable graphics.

Something like that, what can be activated in the developer options but with variable Graphics, not such a simple circle.

View 1 Replies View Related

General :: Hisense Sero Pro Digitizer - Random False Touches When Connected To PC Via USB

Nov 19, 2013

My sero pro produce random false touches when connected to computer via usb cable. That makes it very inconvinient to use for development. It does not have this problem when the cable is not connected. That is most apparent when "Show touches" is turned on in developer settings.

I opened it up looking for loose joints on usb or digitizer ports, but everything seems good with that.

View 1 Replies View Related

Motorola Droid :: Ghost Writer Touchscreen - Lost Control Of The Touchscreen

Mar 18, 2010

I wonder if ne one had an major issue with their touch screen before like I had with mine. So I decided to post this little story. Let me start off with a little background info. I got my droid november 6, 5 46am central time zone. don't ask me how but the vzw dude was letting me earlier cuz I had work. I was so happy that day leaving t mobile I did love my g1 but wen I read all about the droid I felt likt I had to leave her and move on. She did do a lot for me but time tells all and it was my time go and move on.Untill two months ago (Present time I'm talking in) I realized not everyone has the bubbly keyboard. I saw friends at my unit (I'm in the army reserves) that bought the droid a couple of months after me had flat keyboards n they were bitching bout how flat it was. I agreed with them since I was woth a g1 the keyboard was a bit flat but nothing to were its such a pain, so my friend shows me his keyboard and I looked shocked played with it was like wow and I pulled my n did a side by side side comprasion and this before I saw the bubbley keyboard thread on here. So unforunately my toucscreen starting doin its own thing like it was ghost writer and spazzing out. I had no control over it this happened monday nite and I was dreading it that I will end up replacing it. But it would not let me do nothing.I couldn't go ne where on my screen it would randomly hit different icons to the point were sum times it would call my contacts. I only had control over the physical buttons. So on Tuesday during work I fought the ghost writer to let get to setting a do a system restore. First minute of the set up was ok but right wen it finish and I was on the home screen again. I was like FUDGE I don't want to replace my rare Droid. After work I replaced it, I was real pissed I had the bubbly keyboard and (something I didn't noticed untill I got my replacement) the golden plated volume side button. I miss my precious rare droid. I was soo proud to be first non employee to have the droid in houston.

View 10 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved