[android-developers] How to detect when user blows into the microphone and ignore any other sounds.

2013-06-14 Thread Matt
Hey all, I have been working on an app that takes input from microphone when user blows into it. I am using FFT based sound analysis and converting the values in frequency by using a zero crossing method. I am still unsatisfied with the results. What I want is, it should only detect the "air-bl

[android-developers] Re: Can't build after update to ADT 22 - library packages not resolved.

2013-06-14 Thread Nathan
On Friday, June 14, 2013 1:00:33 PM UTC-7, Lew wrote: > > > Isn't he talking about Java packages rather than application packages? > >> >> Yeah, I forgot to specify. Fixing the corrupted project missing the src path made it work, but I am sure I will be back here when the next ADT rolls out.

[android-developers] Re: Simulate an incoming call from a test?

2013-06-14 Thread Larry Meadors
I actually found a clean solution for my case. I was over-thinking it - I didn't need to test that the incoming call triggers the listener, just that the listener does what it's supposed to when it's called. I think it's safe to assume that if I register the listener that android works well enough

[android-developers] Re: How to override android device home button

2013-06-14 Thread Matt Kanninen
You would have to create a custom home-screen replacement application. http://stackoverflow.com/questions/3666771/how-can-i-create-a-custom-home-screen-replacement-application-for-android On Thursday, June 13, 2013 11:22:39 PM UTC-7, Sadhna Upadhyay wrote: > > Hi guys, > > can some one tell

Re: [android-developers] Re: how to get a list of locales supported by device we're running on

2013-06-14 Thread Lew
latimerius wrote: > True, if you are able/willing to supply a text renderer with your app > surely there's nothing in devices that would prevent it from rendering any > language independent of what the platform supports. And if I was working > on something that relied on text rendering as its

[android-developers] Re: Can't build after update to ADT 22 - library packages not resolved.

2013-06-14 Thread Lew
Jonathan S wrote: > each library has own unique package name. You have to set it separate from > other library and application. > > If library is com.example.lib and app is com.example.app > > you can't do com.example.app.R in the com.example.lib, it need to be > separate. > Isn't he talking ab

Re: [android-developers] Stop an Application after trial period

2013-06-14 Thread Lew
tamil maran wrote: > hi everybody.i [sic] need some suggestion in android media file > compression. > > i have 500 MP size video .i should upload that video to server.even though > it doesnt upload to server due to large memory size.so i need to compress > the video file like large memory size

[android-developers] UI Automator testing of AutoCompleteTextView

2013-06-14 Thread chavezirl
Hi, I have an AutoCompleteTextView control defined as follows: I am using the uiautomatorviewer application to identify the element to be used when selecting a result from the AutoCompleteTextView, but currently I don't see anything in the view hierarchy. I was wondering if anybody has see

Re: [android-developers] How to override android device home button

2013-06-14 Thread Kristopher Micinski
You should not be overriding the behavior of the home button... Kris On Fri, Jun 14, 2013 at 2:22 AM, Sadhna Upadhyay wrote: > Hi guys, > > can some one tell me that how to override android 4.0,4.2 version device > home button. > > thanks in advance. > > sadhnan. > > -- > -- > You received th

Re: [android-developers] Stop an Application after trial period

2013-06-14 Thread Tamil Maran
hi everybody.i need some suggestion in android media file compression. i have 500 MP size video .i should upload that video to server.even though it doesnt upload to server due to large memory size.so i need to compress the video file like large memory size to small memory size.is there any possib

[android-developers] Re: Overriding referenced style attributes

2013-06-14 Thread Etienne
Originally posted HERE -> http://stackoverflow.com/questions/17103894/overriding-referenced-style-attributes -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To un

[android-developers] Overriding referenced style attributes

2013-06-14 Thread Etienne
After reading through References To Theme Attributes I am trying to reference the value of an attribute in the my custom theme that I have set. I am applying a user-defined style to a Ch