HTC EVO 4G :: Screen Clicking On Its Own?
Jul 24, 2010
Anyone notice an issue where the screen is clicking on its own? It looks as if something is just clicking one particular spot of the touch screen. It does this usually after using the phone for more than 10 mins constantly.
View 1 Replies
Oct 9, 2010
How can we on or off GPS and 3G by clicking on button without going on setting screen in android?
View 1 Replies
View Related
Nov 18, 2010
I am working on an application where I need to go to the next Screen form the Main Actvity when I Click on the Image Button of the Main Activity Screen. I had searched a bit on Net regarding this and found something like the OnClickListener method. I am still stuck for what exactly I want to do actually.
View 3 Replies
View Related
Jul 20, 2010
Are u able to change the clicking noise to another sound when u touch the screen?
View 2 Replies
View Related
Oct 14, 2010
This may not be important at all but I did think this was a bit strange. After I rooted, I noticed a clicking type of sound coming from the camera whenever I booted the phone. Its kind of alarming but not sure if I am the only one.
View 1 Replies
View Related
Jun 15, 2012
My G2x make a clicking sound went i make or take a call sense i make a update las months or so. I love my phone i don't wanna change it.
View 9 Replies
View Related
Jul 5, 2010
I've been having issues with pressing my Inc. say I want to choose the 1st conversation thread, I will press it and it will bring up a totally different conversation (sometimes the conversation I bring up is not even on the screen).Am I the only one with this issue? It is driving me crazy because on the go I have texted the wrong person a few times. I'm not even scrolling through conversations at the time, just bringing up the 'Messages' shortcut.
View 1 Replies
View Related
Dec 15, 2009
I am getting this clicking sound when playing static pcm data. Anybody out there is having the same problem? This is not the data issue.
View 7 Replies
View Related
Apr 25, 2010
Ive just downloaded the Barcode scanner App from the market and when i use the Barcode Scanner my phones starts making clicking sounds, Is his normal with this app?
View 2 Replies
View Related
Oct 26, 2010
During playback of music, video if I turn the volume right down there is a clicking noise. Tried different tracks and a couple of different players. It can also be heard between tracks. is this normal? You can't hear it when u turn the volume up though.
Edit:
Android 2.2
Orange branded
No task killer
HTC desire
Not rooted
View 1 Replies
View Related
Aug 29, 2010
are we ever going to be able to copy and paste from emails? Or directly click on a link in an email??
View 4 Replies
View Related
Nov 3, 2010
I want to give my users oppertinty to choose destination. from the beginning it will already have a point on the map, and after that they can choose/change to another location if they want. how is it possible to change the point on the map, by clicking somewhere else on the map?
View 1 Replies
View Related
Jun 21, 2010
Is there a way/setting/app capable of being able to "double click" on an Icon while browsing on the phone. The way the company sets up my work calender is when I want to see what the schedule is I have to double click to open it. On a regular browser double clicking is no problem but on the EVO all it does is zoom in.
View 4 Replies
View Related
Jan 3, 2010
I've three Tabs: mTabHost = getTabHost(); mTabHost.addTab(mTabHost.newTabSpec("tab_1").setIndicator ("Name1").setContent(R.id.tab1)); mTabHost.addTab(mTabHost.newTabSpec("tab_2").setIndicator ("Name2").setContent(R.id.tab2)); mTabHost.addTab(mTabHost.newTabSpec("tab_3").setIndicator ("Name3").setContent(R.id.tab3)); mTabHost.setCurrentTab(0); If the user click on tab_3, i want to call the function test(); . How can i set an onclicklistener on tab_3 or solve the problem on another way?
View 4 Replies
View Related
Jan 21, 2010
I am trying to resolve the clicking problem while using the AudioTrack. It takes place only when playing the first part of the wave (pcm) buffer when the offset to the write is 0 (zero). track.write(buffer, offset, minBufferSize); It tells me that there is something wrong with the pcm data. Could it be because the wave data, I generate using Audacity, has some header as opposed to the pure pcm which does not? I was looking for the converter tools to generate pure pcm but found none. Applications I found generate only wave data so I am not able to test this assumption. At this point I am sure that filling the buffer is correct. Any ideas?
View 2 Replies
View Related
Nov 11, 2010
i have a nest button on clicking which a new image should be displayed.But not happening so i have taken an integer array as: private int imageCounter = 0; private int index_count = 0; private ImageView imageView; private int[] imageArray = {R.drawable.image_w_lbl_0, R.drawable.image_w_lbl_1,};
View 3 Replies
View Related
May 29, 2010
Yesterday an application crashed on my phone and made it behave weirdly. Now, every time I type a text it makes little sounds, from a typewritter. That is really annoying, how do I turn that off? I can not find the settings anywhere.
View 2 Replies
View Related
Mar 4, 2010
I want to show a custom image with some data in it while clicking map overlay that i have added to google map in android.
Can any one guide me how can i create that custom image or thing to be displayed on google map with some data on it?
some body told me to go for custom view but i have no idea about them.
View 2 Replies
View Related
May 7, 2010
I just cant get this working. I tried using the code below with onTouchEventand and it doesn't work.
If i return true at the end of the method, i get the toast with the coordinates but can't move a map, and if i return false, i can move a map but cant display a toast after the user clicks on a map. If i get it right, the other onTap method is used only for clicking on a overlays. code...
View 1 Replies
View Related
Feb 10, 2010
I want to redirect to particular URL while clicking on button
View 2 Replies
View Related
Mar 15, 2009
From the reference of SDK, AlertDialog information as below. I want to create a dialog but I don't want to have any buttons in the dialog, then I hope to dismiss the dialog after I click any item in the dialog, how should I dismiss the dialog ? When the user click the "back" button, it will dismiss the dialog. So I need to send the key message in hard code? Is there any other way?
public AlertDialog.Builder<http://developer.android.com/reference/android/app/AlertDialog.Builde...>
setSingleChoiceItems (CharSequence[]<http://developer.android.com/reference/java/lang/CharSequence.html>items,
int checkedItem, DialogInterface.OnClickListener<http://developer.android.com/reference/android/content/DialogInterfac...>listener)
Set a list of items to be displayed in the dialog as the content, you will be notified of the selected item via the supplied listener. The list will have a check mark displayed to the right of the text for the checked item. Clicking on an item in the list will not dismiss the dialog. Clicking on a button will dismiss the dialog. Parameters items the items to be displayed. Checked Item specifies which item is checked. If -1 no items are checked. Listener notified when an item on the list is clicked. The dialog will not be dismissed when an item is clicked. It will only be dismissed if clicked on a button, if no buttons are supplied it's up to the user to dismiss.
View 3 Replies
View Related
Feb 9, 2010
Anyone else have a clicking sound coming from there physical keyboard when you press each button?
View 5 Replies
View Related
Jun 10, 2010
Whenever I take a picture in Google Goggles, i hear 2 clicking sounds coming from the phone. The first sounds comes when the capture button is pressed, and the second sound comes as soon as the picture is taken. I don't hear these noises when taking pictures through the regular camera app. It sounds like it's coming from inside the phone.
View 4 Replies
View Related
May 13, 2010
when I type on my virtual keyboard (swype ) for every letter I type there is a click , I want to remove it but cant figure out how.
View 1 Replies
View Related
Jul 2, 2010
I just did a factory reset on my phone to clear up some lag. It has definitely helped, but I'll wait and see after a few days. Anyway, I'm just about finished putting all of my customizations back, but there's 1 thing I had before that I can't find: When I click on an icon on the desktop screen, or in a menu, I used to have a clicking sound. I remember there was a setting for it, but I can't seem to find it.
View 3 Replies
View Related
Nov 3, 2010
I am thinking about switching to the evo from my epic I really like the epic but not liking the slider and earpiece on it. My question is I really like the little click noise it makes when you clicking on things when typing and in the menu does the Evo have this feature and I know it doesn't have swype is there anything comparable for the Evo seeing it doesnt have it?
View 3 Replies
View Related
Nov 22, 2010
I have a linearlayout that is filled with texviews dynamically when i click on a button , but the content of linearlayout doesn't appear, how can i redraw it?
View 2 Replies
View Related
Apr 12, 2010
I noticed when I search for a business or whatever and google finds a phone number, I click on it and it thinks it is a web page. It should open up the dialer and call the number.
View 4 Replies
View Related
Sep 13, 2009
1. When does OnItemSelectedListener get called?My expectation was that when an element of a ListView was clicked/ touched that the OnItemSelectedListener would be called. My OnItemSelectedListener is not called when a list element is clicked/ touched. (It is called if the list has focus and I move through the list with the arrow keys in the emulator) Is that the way it works? This ListView has an adapter that supplies TextViews for drawing the list elements.
2. With a ListView set up this way who handles display of selected list items? Does the ListView do it or should the adapter configure the views it supplies to make them look "selected?"
View 2 Replies
View Related
Aug 26, 2010
I see similar threads says this is normal for the Moto Droid. Anyone have this with their Dinc? Is it okay? It never did that until I had to remove my cover a handful of times during one day. It does it when it first turns on, if I change between taking a photo and viewing photos, etc. I want to be sure I didn't break it or something.
View 3 Replies
View Related