Sprint HTC Hero : Disable/enable Phone Vibration On Click
Dec 6, 2009
I have a Sprint HTC Hero w/ 1.5 (Nov 18 update). Can someone please share how to disable phone vibration when we dial a number? Also, I am using Handscent SMS, can you please also share how to enable phone vibration when writing a text message?
View 1 Replies
Apr 24, 2010
Is there a simple way to enable / disable vibrate for the phone / notifications? I tried using the volume rocker, going to vibrate there. That works for the ringers, but not notifications. I mainly want to set / unset vibrate for gmail and Google Voice. I have tried various 3rd party apps like Volume Control / Audio Manager, but nothing seems to work consistently.
View 2 Replies
View Related
Aug 2, 2009
Is there one click apps to enable/disable wifi, and bluetooth?
View 5 Replies
View Related
Nov 10, 2009
I swear, sometimes I feel like my phone's vibration is louder than its ringer. When I'm in class or something, I am afraid to leave it on vibrate because its vibrations are very loud. Same thing as in the library.Anyway to soften the vibration?
View 6 Replies
View Related
Jun 18, 2010
Is it possible to make the keypad on the phone not vibrate? I have haptic feedback disabled and the only two things that vibrate are the unlock (which I dont mind) and the keypad on the phone. I would really love to turn that off. Does anyone know if this is possible?
View 5 Replies
View Related
Jun 18, 2010
Is there a way to delete or disable htc sense? I want to see the android launcher... I'm on 2.1 official rooted.
View 15 Replies
View Related
Nov 9, 2009
Does anyone know how to disable the Hand Free Activation on the Sprint HTC Hero? There doesn't appear to be any way to remove the SIM. I need to disable the connection to Sprint. Can do the data but how is the voice disabled?
View 1 Replies
View Related
Jul 13, 2009
Is there some way to enable/disable the APN's you have added on the phone? The only thing I see is the "restore default settings" choice. I would like to find a way to enable/disable the APN's so it doesn't stay active all the time...
View 9 Replies
View Related
May 29, 2010
So I'm running android 2.1 on my Sprint Hero, but I want to disable the Sense UI so I can run the Android OS default home (just to check it out). Most of the things I've read online say to do the following...
1)settings
2)applications
3)manage applications
4)HTC Sense
5) Clear default
The only problem is, there is no default to clear. I can't even click on it and force close does not work.
View 10 Replies
View Related
Jun 5, 2010
I just got my HTC Hero on sprint yesterday and I have all the vibration setting ticked but it never vibrates when i get a new text. It only vibrated once when i was on the phone and got a message. How do I fix this?
View 6 Replies
View Related
Feb 28, 2010
When I am dialing a phone number (typing the digits one at a time, not going through my address book), the phone will beep and vibrate when I press a number. Any way to turn off the vibration?
View 8 Replies
View Related
Feb 5, 2010
Is there a way to turn off the vibration when dialing a number? I like the keypad tone but I don't want it to vibrate. I've looked all over and can't find it. I could have sworn I had it turned off but then I had to reset my phone and now I can't get it off.
View 5 Replies
View Related
May 21, 2010
I know that you can make it so there is NO vibration while you are typing text messages. I had it turned off, but I wiped and now I cannot find where to go in order to turn it off again. This vibrating keyboard is the silliest idea ever, Can someone plz point me to where on the phone I can disable this feature?
View 4 Replies
View Related
Mar 19, 2010
I have not rooted my phone, so I have stock. I don't want to root my phone either until I hear how the 2.1 update performs.
So my question is, does anyone know how to turn the vibration off for the dial pad? I got it turned off for texting and I have the noise off for the dial pad just can't seem to get the vibration off. The reason I ask is because my dial pad is realllllllyy laggy. Like it takes 2-3+ seconds for a number that you press to show up and I feel like the vibration is the reason for the lag.
View 3 Replies
View Related
Jul 22, 2010
Is it possible to programmatically disable and enable the led indicator light on an Android device? I am not referring to just turning it on and off as in a notification. I did not see anything in the api that would do so. I am guessing this is hardware specific if it is possible at all.
View 1 Replies
View Related
Jan 3, 2010
Is there a 1 click root that works for the Sprint HTC hero? I've tried the one on the Unlockr site, but it fails to create a backup?
View 5 Replies
View Related
May 31, 2010
anyone know how to turn it off? after the update to 2.1, this feature seems to be gone. seems the only way to turn off vibration when receiving an incoming text message is to put the phone on silent. but then you miss incoming calls. also, my htc weather widget doesn't work either. keeps saying "no weather data available", no matter if I have the mobile network on or Wi-fi. anyone else having this issue?
View 5 Replies
View Related
Jan 20, 2014
Principally to save battery charge, i need to find an application or a method that automatically shut down data connection when i lock the screen and resume it when i unlock the screen.
I've tried many of the most popular software that do this, but, with dual sim phone, they are able to shut down data connection but not to startup.
View 9 Replies
View Related
Jul 21, 2010
I have created an application that creates notifications, using the following code:
// Notification notification = new Notification(R.drawable.notification_icon, title, System.currentTimeMillis());
notification.flags |= Notification.FLAG_AUTO_CANCEL;
// parameters
String ringtone = prefs.getString(context.getString(R.string.key_notifications_ringtone), "");
if (ringtone.length() > 0) { notification.sound = Uri.parse(ringtone);
notification.audioStreamType = AudioManager.STREAM_NOTIFICATION;
} boolean useVibrator = prefs.getBoolean(context.getString(R.string.key_notifications_use_vibrator), false);
if (useVibrator) { notification.defaults |= Notification.DEFAULT_VIBRATE;
} boolean useLed = prefs.getBoolean(context.getString(R.string.key_notifications_use_led), false);
if (useLed) { notification.defaults |= Notification.DEFAULT_LIGHTS;
notification.flags |= Notification.FLAG_SHOW_LIGHTS;
} // alert
RemoteViews contentView = new RemoteViews(context.getPackageName(), R.layout.notification);
contentView.setImageViewResource(R.id.notification_icon, R.drawable.icon);
contentView.setTextViewText(R.id.notification_title, title);
contentView.setTextViewText(R.id.notification_text, text);
notification.contentView = contentView;
Intent notificationIntent = new Intent(context, MyActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.contentIntent = contentIntent; notificationManager.notify(1, notification);
The notification works, and the correct ringtone is used. However, even though the preferences are correctly activated and notification flags are correctly set (I checked by debugging), the notification never vibrates and never cause the lights to be activated. I would have blamed my phone's settings, but every other app using notifications, like messaging, gmail, and others correctly use all these features. (My phone is a HTC Hero with Android 2.1)
View 1 Replies
View Related
Mar 11, 2010
Got a sprint hero yesterday, with google branding. Trackball has no audible click. Is it supposed to?
View 10 Replies
View Related
Oct 14, 2010
How to disable all vibration using my HTC Wildfire ? It still vibrates when typing on virtual keyboard or the calculator. Is there a free app allowing to do this kind of advanced settings?
View 4 Replies
View Related
Aug 4, 2010
You can now force roaming on the Hero: Mod to enable forced roaming - xda-developers
The current mod is for Fresh 2.3.3, but this can be ported over to other ROMs.
View 2 Replies
View Related
Feb 7, 2010
Im trying to root my hero using pre kitchen but its not going threw i run the diagnostics text before you root everything checks out good. I have tried to root by having checked the box (with google) and tried it by not checking it. When my phone reboots i get the exclamation mark with a little phone on it. Everything seems to be running good except for this part# flash_image recovery /sdcard/recovery-RA-heroc-v1.2.3.img flash_image recovery /sdcard/recovery-RA-heroc-v1.2.3.img error opening /sdcard/recovery-RA-heroc-v1.2.3.img: No such file or directory can this be the problem? If so, how can i fix it?
View 8 Replies
View Related
Jul 10, 2010
I get a pop up of settings box briefly then it goes away. Is this common? I don't have to push button or do anything but it pops up.
View 6 Replies
View Related
Jul 15, 2010
When sliding your finger across the dots at the bottom of the screen to change homescreens, the phone vibrates. How do you turn that off?
View 5 Replies
View Related
Feb 27, 2012
I installed cm7 on my htc inspire. everytime i make a call and just after the other party picks up, i get a vibration. i disabled all haptic vibration in settings. but this didnt stop it. how do i disable this?
View 1 Replies
View Related
Aug 26, 2010
Does anyone know if it's possible to disable the vibration feedback from the Samsung keyboard? Disabling haptic feedback works, but that effects the entire phone (i.e. long presses and home keys).
View 2 Replies
View Related
Feb 9, 2010
Is there a way to disable the vibration when using the dial pad to dial out on the touch screen? Every time I dial a number feels like I'm getting zapped to death.. The vibration is way to strong. Any help is appreciated..
View 1 Replies
View Related
Jan 25, 2010
is there any way to disable the lockscreen i looked at other post and couldnt find any info thanks
View 1 Replies
View Related
Nov 27, 2009
Does anybody know how to disable some programs that i know i won't be using?
View 1 Replies
View Related