Android :: How To Disable AGC On HTC EVO (Supersonic)?
Jun 9, 2010
I'm working on an application that needs to perform recognition algorithms on raw PCM audio captured from the microphone. On all Android devices I've tested, the PCM data is usable (i.e., raw audio data.) This is not the case for the new Sprint EVO. The Sprint EVO has AGC (Auto Gain Control) on the mic, which destroys the data such that our recognition algorithms no longer work. I believe this is a feature that HTC added to the OS for this device (and possibly future devices.) I've tested our application on a few other devices using the same OS version (2.1) and these other devices behave normally. Unfortunately, HTC has not yet posted the code used on this device. I expect that I may have to use JNI in order to bypass this for this specific device, and I'm willing to do this, but without access to the HTC source, I wouldn't know where to begin. There is no way to reverse the effects of AGC, so I'm stuck trying to work around it.
View 1 Replies
Mar 6, 2010
HTC A9292 (Supersonic) WiMAX 4G ?236 - Toronto, Canada - Free Classifieds - Muamat
View 34 Replies
View Related
Jan 28, 2010
with leaks starting to flow into steady streams -- why haven't we built a Sprint Supersonic section yet? Engadget has some blurry cam leaked shots and the thing looks friggin slick. i am definitely going to give up the Hero as soon as this bad mamajama comes out.
View 13 Replies
View Related
May 23, 2010
Check out post number 2: T-Mobile rumored Galaxy S could be Samsung Supersonic?
View 13 Replies
View Related
Mar 10, 2010
And once it is released, will you switch to the Supersonic: A.) With a full upgrade from Sprint B.) Buy it outright C.) Stay with your Hero How much effect will a 2.1 Hero update have on your decisions? What will your actions be if it WILL and WILL NOT get the upgrade.
View 18 Replies
View Related
Nov 6, 2009
How can we disable GPS programmatically?
View 2 Replies
View Related
Feb 19, 2010
How can I disable RadioGroup, means all the radio buttons should e disabled.I already tried setEnabled (false) and setClickable(false) but this did not.
View 4 Replies
View Related
Oct 30, 2009
I am developing an application that is used for a sort of tournaments. The requirements are that if the application is running it should be impossible to make and receive phone calls. Can I disable 2G/3G from within my app? (Airplane mode is no option, because I still need GPS).
View 2 Replies
View Related
Oct 10, 2010
i want to lock screen,i want to disable the home key only use the back key,how to do?
View 2 Replies
View Related
Sep 13, 2010
Is it possible to disable the USB port? Even if the device is physically connected to a host computer via USB cable, no logical connection should be established. What are the sources/programmatic way of doing this?
View 12 Replies
View Related
Aug 17, 2010
Possible Duplicate:
Disable trackball click in Android
How can I disable the trackball in my app? I only want the buttons to work when you click them using the touchscreen.
View 1 Replies
View Related
Sep 14, 2010
I want to create api in android source code to dissable installed android application ( not uninstalled).Is there any pointer for this task? By using this api in system application user can select desired application to dissable and enable when it needed. For example I have installed paid weather application on android phone which is running background thread to get updated report from server over http.which i want to disable on roaming and again unable it when come back.but dont want to uninstall application from phone.
View 3 Replies
View Related
Jul 30, 2010
I have implemented GestureListener, and it is working perfectly, but how can I remove GestureListener from my view?
CODE:...........................
View 1 Replies
View Related
Jun 25, 2010
Wanted to leave a ImageButton is disabled (not clickable), but have used android: enabled = "false" but does not work
Does anyone know how to disable an ImageButton?
View 1 Replies
View Related
Aug 18, 2010
We have a variety of devices for testing purposes, and now that Froyo is being pushed (to the Nexus One so far at least), we have to constantly dismiss upgrade requests. There is no apparent "stop asking me" button.
So, is there any way I can disable OTA OS updates? We want a number of these phones to stay on old OS versions.
View 1 Replies
View Related
Jan 29, 2009
I'm fairly new to android development - I'm having trouble finding documentation on how to disable the accelerometer/auto-rotate feature for an app (i.e. when you turn the phone, everything 'corrects' changing the layout). Is it possible to disable in the emulator?
View 2 Replies
View Related
Dec 5, 2009
So this is a response to another thread, that I never got a reaction on. Hopefully someone can give a hand. I have a AutoCompleteTextView with a CursorAdapter with data. I need to be able to set a text in the AutoCompleteTextView programmatically without the autocomplete mechanism kicking in. If I use *setText *on the AutoCompleteTextView it will start the autocomplete. I tried calling *dismissDropDown() after setText, but this dosnt work because the drop down is not shown yet.
View 6 Replies
View Related
Feb 25, 2010
I signed up for Google Voice a while back just to see what it did. In the process, I obtained a Google Voice number that I never used. Now I have a droid, and want to use the Voice app to take care of my texting and voice mail. However, when I send a text, it is viewed as coming from my GV number. I want it to still appear as from my actual phone number.
View 3 Replies
View Related
Aug 22, 2009
I m making a test application and want to able all keys excluding the back button...... Using below code i am not able to disable HOME key and right soft key..... Please suggest what to do.
@Override public boolean onKeyDown(int keyCode, KeyEvent event) { if(keyCode == KeyEvent.KEYCODE_BACK){ return super.onKeyDown(keyCode, event); } else { return true; }
}
View 11 Replies
View Related
Dec 17, 2009
Does anyone know how to disable the pop up text message that comes on the screen when u receive a message thru handcent? i would like it to jus show up in my notification bar so it wont interrupt me doing something else and show in the text big on my screen.
View 3 Replies
View Related
Oct 20, 2010
Skype keeps showing up in my task killer window, but I don't ever open it, nor will I ever use it. I thought I turned off any and all ways it could open, but apparently not. I really don't want it sucking up my battery life.
View 1 Replies
View Related
Jan 20, 2010
When I receive a text message, it displays a gray pop up box with the text and buttons to "close" or "reply". I want to turn this off. It's often slow and sometimes pops up while I'm already typing my reply. I've gone into the messaging settings and turned off everything that I figured could be related to that. I even turned off Auto-retrieve, but I still get those gray popups. I would really like to have them turned off.
View 7 Replies
View Related
Nov 17, 2010
in my android application there are number of images in drawable folder. in my layout two buttons:back and forward button.on clicking next and back buttons different-2 image get loaded on the same layout(common for all images).i am able to load images in next/back button click but after reaching to the last image i want to make my next button click disable and same for the back button.As the user is on the first image the back button would be disable.
View 2 Replies
View Related
Jan 22, 2009
I am using scrollview. I need to disable scrolling bar on particular time. Is it possible?
View 3 Replies
View Related
Dec 30, 2008
Does anyone know of any apps that can disable the camera? My work does not allow camera phones.
View 8 Replies
View Related
Apr 11, 2010
Any app that kills sms texting not just when driving (there's more than one for that) but that disables it period or has a toggle that works to stop texting all the time. Especially receiving texts.
View 1 Replies
View Related
Aug 14, 2010
1- How can i disable multi-tasking? My application is a socket based game, every time i start the app, it MUST load the main page first to start the socket connection? I do not want the user to be able to run my application in background. Is this possible to do? 2- I do not want the user to be able to use the back button, to navigate between pages, users must only use the buttons available in my application to navigate?
View 1 Replies
View Related
Jan 8, 2010
I am going to develop one application for android (As per client request). Which starts after booting of device. When device get booted then only this application will be there on screen. No key press will minimise that application. The solution i found on this site is able to block all keys instead of home and end call keys.
View 2 Replies
View Related
Apr 10, 2009
It looks android starts data connection right after phone boots up and keeps the data connection until phone powers down.Is there any API to disable data connection or enable data connection?
View 3 Replies
View Related
Sep 4, 2010
I just got an EVO and it chews through the battery fairly quick. I downloaded JuiceDefender to manage my mobile data connection. That seems have worked out fairly well. However, the settings are just very restricted (even on the paid versions).As of right now I am trying to develop a much more customizable battery saving application. The main thing I am trying to do first be able to enable/disable the mobile data connection at will.The problem is I can't find any code snippets or articles on how to do this. The only thing I have found is the following. I don't know how accurate this is, but this was all I could piece together browsing developer.android.com.Looking at the phone info when JuiceDefender is running, I found that the GSRP network is getting turned on and off. This leaves me to believe it is possible to do it through code even though every page I find asking about this same issue says it cannot be done. The kicker is they all say to do it like APNDroid. Please someone give me some insight.
View 1 Replies
View Related