Android :: Signal Analysis - Some Filters

Jun 18, 2010

As the world cup is the main sport event and the Vuvuzelas are the most annoying sound in the world, I had an idea to remove them definitively by reading this new ( http://www.popsci.com/diy/article/2010-06/simple-software-can-filter-out-vuvuzela-whine) that told us that the sound has some frequencies at 233Hz + 466,932,1864Hz.

I have already made a lot of Android application by myself but never touching the signal analysis and filtering part, so here are a few questions, I do not ask for precise answer but maybe links and tutorial to find something to work on. I guess that a new Android phone has the CPU and power to make real-time filtering.

1) How can I intercept the sound coming from the Jack microphone - Line-IN plug- ( I plan to link my TV to my phone with Jack to Jack plug). My question is totally software and coding, I have all the wires and adapters to plug a jack into my android phone Line IN.

2) Are there some Fourier analysis librairies, may I have a look to Java libraries on the web and import them to my Android project?

Android :: Signal analysis - some filters


Android :: Apply Alphabetical Filters On ListViewApply Alphabetical Filters On ListView

May 11, 2010

I need to create a list view that display same functionality as Contact App. I need to have a scroller through which i can traverse the list alphabetically. To achieve this i am following an example from API demos "com.example.android.apis.view.List1.java". It is using a textfilter. When i implement this functionality on a static list view => it is working fine. But when i try this on a dynamic listview=> it is not working.

View 2 Replies View Related

Samsung Moment :: Signal Strength Apply To Data Signal Or Just Voice Signal?

Nov 4, 2009

I want to reach out to others here before I take my Moment back to Best Buy to exchange it for another Moment.

My signal strength fluctuates wildly just sitting in the same spot. With the Hero I got a constant 5 of 6 bars, but the Moment will vary between 0 and 5 of 6 bars. But it's more complicated than that.

It seems that whenever the EVDO data kicks in, it causes the signal strength to drop to 0 or 1 bar. Once the data is idle, the EVDO indicator turns grey and then changes from EV(^v) to EV(D). At that point the single strength will return to 3 or 4 bars.

At times, though not as consistently or often, the EVDO connection will fall back to 1xRTT and will switch between them every few minutes. This will occur even when the signal strength bars are in the 3 to 4 range.

So, the my questions are...

Does the signal strength apply to the data signal or just the voice signal?

Is there any legitimate reason for the signal strength to vary wildly like I've described, even when sitting in the same recliner where the Hero had a constant 5 bar connection and data service that never wavered?

Is anyone else having signal strength and/or data service issues?

Should I exchange the Moment for another Moment or will I likely experience the same issue?

View 8 Replies View Related

Vibration Analysis On Android

Feb 19, 2014

I want to develop a Vibration Analysis application. I want to use it to measure the vibration in an Elevator so one can analyze the riding comfort.

First, the phone will be put on the flooring in the middle of the cabin, the measurement should be along the Elevator's total travel (up to 1min ride) and at least following to 2 axis (X and Y, if I can measure following Z too, it will be great). Once those data are captured during this 1min, I want to plot them on a separate graphs (first graph: X position vs time, second graph: Y position vs time). Also, I might add the feature of measuring the elevator speed while traveling inside the cabin.

My questions are:

1- Can I get the data that I want only from the accelerometer? or I should use the gyroscope and the digital campus as well?
2- Can the accelerometer (on Samsung Note 2 for example) detect small vibrations? like ones that occurs in an elevator (around 15 m-g)

View 1 Replies View Related

Android :: Battery Consumption Analysis

Jun 11, 2010

My question is basically "can anyone recommend an application that will tell me which applications are draining my battery". I've read about task killers and usage and turning stuff on and off, I'm not worried about that, and I don't need to know why (i.e Google Earth uses X units per hour.

View 11 Replies View Related

Android :: Audio Stream Analysis?

Sep 23, 2009

is possible to analyze audio stream spectrum with Android API (similar to what you can easily do with Flash). Basically what I need is to determine the duration between two claps in a small audio record. The claps are much louder than the background, so theoretically it should be somehow possible..

View 5 Replies View Related

Android :: How To Track And Analysis Droid App

May 25, 2010

I want to know what kind of users are using my app.

I think I need the device id, the network type, the network provider name and its ip address. is there any framework to do this thing? And of course I will ask user to enable it before I can do it and leave an option to disable it when user want to toggle it off.

View 4 Replies View Related

Android :: Audio Output Analysis (Microphones)

Jan 17, 2010

I was playing around with some of the live wallpapers and thought it'd be neat to try to make something like the frequency/waveform visualization wallpapers, but I'm not sure there's an API to get the audio output data from the device. I know you can use AudioRecords to get this sort of data from microphones. Anyone know if there's a way to manage it for a device's output?

View 2 Replies View Related

Android :: Develop Golf Video Analysis Software

Dec 5, 2009

I am a golf professional from Pennsylvania. I am looking for an app that I can:
-Record and import videos taken w/ the Droid
-Slowmotion Playback (forward and reverse)
-Frame by Frame Playback (forward and reverse)
-Save clips by video angle (down the line, face on, etc)
-Ability to draw lines/shapes on the screen w/ various drawing tools. If anyone has any interest, please let me know. I am not sure how to go about developing this type of stuff, so anyone who can provide some insight, it would be much appreciated.

View 1 Replies View Related

Android :: Guitar Tuner - No Public API For Frequency Analysis

Oct 17, 2010

I am looking for some help. I'm new to android, and java development. I've got a pretty good handle on the basics, but I'm having an issue figuring out some more advanced operations. I'm working a guitar tuner, which is a stepping stone to a chromatic piano tuner. There is no public API for frequency analysis, so I'm thinking I need to write into code a Fast Fourier Transform, and I'll assume I need to import a different package for this. Once I display the frequency of any given note, I need it to reference it's offset to a pre-measured Mhz. There is alot to write, I'm aware, but my first step is to try to figure out HOW to get the frequency, and display it in the UI.

View 12 Replies View Related

Android :: What Are Intent Filters Exactly

Jul 3, 2010

I've read lots of articles about intent filters and I really can't understand exactly what they do? so please if anybody can explain to me with a clear example what is the role of intent filters exactly ?

View 4 Replies View Related

Android :: What Are Intent-filters

Jul 23, 2010

In my android app, I wanted to start an activity 'B' from initial activity 'A'. I have created classes for both of these. However when using following code to start B, I get runtime error as application has stopped unexpectedly, try again.

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

When I added a new entry in AndroidManifest.xml/manifest/application/activity/intent-filers for activity B then the application worked.

I have two questions:

When there are multiple activities entries in AndroidManifest.xml, how does android know which activity to start first?
I could not understand intent-filters.

Here is my partial AndroidManifest.xml

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

View 1 Replies View Related

Golf Video Analysis Software

Dec 5, 2009

I am a golf professional from Pennsylvania. I am looking for an app that I can:

-Record and import videos taken w/ the Droid
-Slowmotion Playback (forward and reverse)
-Frame by Frame Playback (forward and reverse)
-Save clips by video angle (down the line, face on, etc)
-Ability to draw lines/shapes on the screen w/ various drawing tools

View 1 Replies View Related

Android :: LogCat Filters - How To Specify Wildcards?

Feb 14, 2010

I'm using the Eclipse plugin to view log output using LogCat. I want to use a filter all messages with the tag. But it doesn't work, how can I do this?

View 2 Replies View Related

Android :: Not Able To Found Intent Filters

Oct 31, 2010

I'm writing a client application for an Italian social network (Meemi) and I'd like to give the possibility to users to share their calendar events via my client. I noticed on my device (HTC Desire) that is possible to access to a "share chooser" from the Calendar event list: in fact I can share via email, sms, and bluetooth. I'd like to add my client to the this sharing list: but I'm not able to found the right intent filter to use.

View 2 Replies View Related

Android :: List Of All Available Intent Filters ?

Nov 4, 2010

I have search Android docs and for some insane reason I am not able to find the list of all available intent filters.

I am finding an intent filter, which would do something like , notifying me through Broadcast Receiver that a particular Activity (example browser, or email ) has been started or in foreground. Can anyone help me with that .

View 1 Replies View Related

General :: Analysis Of Power Consumption Per Process?

Nov 20, 2012

What is the best android software for showing power consumption by process over time?

View 2 Replies View Related

Android :: Market Filters And Build Target

Nov 18, 2010

I want to set in project properties build target 2.2 (api level 8) In the manifest.xml <uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/> is declared. Did anybody tried, if any user (with min. Android 1.5) see application in the market? Could some other problems occur because of different SDK for building and in manifest?!

View 2 Replies View Related

Android :: 2 Intent Filters - 1 Activity - Which Opened It?

Aug 1, 2010

Is there a way to know which Intent Filter is responsible for launching an Activity which has two Intent Filters defined in AndroidManifest.xml? I want a slightly different set of logic, but not enough that should require a whole new Activity.

View 1 Replies View Related

Android :: Apply Alphabetical Filters On ListView On Os

May 4, 2010

I need to create a list view that display same functionality as Contact App. I need to have a scroller through which i can traverse the list alphabetically. To achieve this i am following an example from API demos "com.example.android.apis.view.List1.java". When i implement this functionality on a static list view => it is working fine. But when i try this on a dynamic listview=> it is not working.

View 1 Replies View Related

HTC EVO 4G :: What Makes Best Touch Qwerty Keyboard? Deep Analysis

Jun 8, 2010

Now I'm not a professional reviewer, but I think I have some good insight to share. Also you may be wondering why this is in the EVO 4G forum, well the EVO is considered one of the best phones out there and I happen to own an EVO myself. I think the phone is great, but I'm usually critical of my devices and I like to take a look at the keyboard as I'm an avid texter. I see a lot of posts of people wondering why one keyboard is not as accurate as another phone. If you're a big texter and you're looking for a really good text phone, I promise this is a good read. So what makes the best touch QWERTY keyboard? Well we would have to look at the criteria of what makes the best QWERTY keyboard:
Keyboard layout
Capacitive touch screen quality
Multitouch
Accuracy of predictive text
If a phone can do all of these things perfectly, you'll have a phone that will be a texting monster. Lets take a look at what I think is the most important criteria, keyboard layout.

Portrait Keyboard Layout
Unfortunately, I think the EVO comes in last for keyboard layout. It has the largest screen, but it wastes most of it with its oversized cursor buttons. The cursor buttons need to be smaller for the other keys to breathe and need to be in a D-Pad layout. If the keyboard is top notch, we shouldn't be using the cursor keys so frequently to fix errors. Also why the keyboard takes up 2/3 of the screen confuses me. This is purely opinion, but I would rather have the "hide keyboard" button not take up space and move it in the upper right like the Nexus One and iPhone as a "Done" button. Lastly the EVO has the shortest "width wise" space bar. The space bar is used frequently and shouldn't be gimped like that. So that leaves the Nexus 1 and iPhone. If you look closely, the iPhone has the most space between keys. Most typing errors are from keys being so close together and hitting the wrong key.

The EVO faces the same problem, although the keys are bigger, so are the keys that are right next to it. Bottom line, keys not only need to be bigger, they need more breathing room in between each other. Another close detail is the "q" and "p" key. The EVO has those keys farther away from the edge of the screen than the iPhone and Nexus 1. The edge of the screen is the least responsive area, so is this space a benefit or a negative? My take on it is that one of two things happen, you either hit the neighboring key, or the key doesn't register at all. If you hit the neighboring key, it takes much longer to edit, rather than to just try and hit the key again. So even though the edge is less responsive, its more beneficial to have the "q" and "p" key closer to the edge and away from its neighboring key. Portrait Keyboard layout goes to iPhone, 2nd Nexus1, 3rd EVO 4G

Landscape Keyboard Layout
Next is landscape mode. I thought this deserved to be addressed as it changes everything. Although the iPhone still has more space between the keys, I'm gonna have to give this landscape mode to the EVO. Unfortunately the space bar on the EVO is STILL the shortest out of the three. So why does landscape make such a big difference even though the keys on the EVO are tightly packed? Well the difference is that the keys are now squares, instead of thin rectangles. This increases accuracy a lot and pretty much negates the disadvantages of having narrow spaces in between the keys. Again HTC could of capitalized on more space for the general keys by not taking up so much space with the cursor keys. As for the Nexus1, the keys are slightly bigger than the iPhone, but are still really tightly packed, so I would say its a tie.
Landscape mode goes to EVO, tie for iPhone and Nexus 1

Capacitive Touch Screen Quality
What good is a keyboard if the screen can't even read your touch actions? I know that the EVO is not tested in this, but we can still use this as a base of comparison. I really believe that the quality of the screen plays a very big role in the responsiveness of your touch actions. Nothing is more annoying then having your touch actions not being registered correctly or not at all. Right off the bat, the Nexus1 is out. So its now the iPhone and EVO 4G. From what I have read, but I can't seem to find the article. The EVO 4G uses a much higher quality capacitive touch screen compared to the Nexus1, most likely very close to the iPhone. So I'll say its a tie between the EVO and iPhone.
Capacitive Touch Screen quality goes to, EVO 4G/iPhone tie, 2nd Nexus 1.

Multitouch
With a multitouch keyboard you're able to type faster. All those fast typers out there can really appreciate a multitouch keyboard. I'm not sure if the Nexus1 supports this, but I don't think it does, so correct me if I'm wrong. So in this case you either have multitouch keyboard or you don't and the iPhone is the only one to have it.
Multitouch goes to iPhone, tie for EVO 4G and Nexus1

Accuracy of Predictive Text
I don't have any experience in this on the Nexus1, but only on the EVO 4G and iPhone. So anyone can chime in if I'm incorrect on this matter. I would think the EVO and Nexus1 would be the same considering they're both Android devices. From my experience and watching many videos, it seems like the iPhone does a better job at correcting and predicting text input compared to the EVO.
Predictive text goes to the iPhone, tie for EVO 4G/Nexus1

Misc
So the last thing I think all the phones adds a little something to make texting easier that doesn't quite fit the criteria. The iPhone OS has a pretty neat magnifying glass where you can move the cursor. I found this extremely handy. The EVO 4G has the cursor buttons instead, which isn't as slick, but can prove to be more precise. Then finally both the EVO 4G and Nexus1 has the voice to text feature from Google, which is pretty dang accurate.
MISC goes to the EVO 4G, tie for iPhone/Nexus1

So what phone do you think has the best, most accurate touch QWERTY keyboard? Is it one of these three, or another phone out there. Also what do you think makes the best touch QWERTY keyboard phone? I appreciate those who took the time to read, took me a while to type up.

View 6 Replies View Related

Samsung Vibrant :: Stuck At File Analysis After Flashing

Dec 1, 2010

My phone was rooted with the 2.2 firmware everything was working fine and yesterday by itself the phone shut off when i tried to boot it, stays in the samsung galaxy boot screen. I tried going into download by holding vol+home+power but it says POWER RESET or UNKNOWN UPLOAD MODE. The phone is able to connect with my pc I tried flashing 2.2 Froyo with odin3 but its stuck at File analysis. Is there any way to fix this? I cant return the phone I bought it unlocked off ebay.

View 8 Replies View Related

Android :: Listing An Application's Activity And Intent-filters

Jun 10, 2010

I am interested in activating another application's activity. I know from reading the Android SDK that it's probably better to do this with an implicit intent. However, this activity doesn't reside in an application I own, so I don't know the action and category and data flags on the intent-filter.

How can I examine an Android applications metadata like the activity classes and the intent-filters for those activities (if declared in the manifest)?

View 2 Replies View Related

Android :: Safe App Search Filters And Web Browsing Restrictions?

Jun 18, 2010

Anything out there that can help keep app browsing secure and safe?Also anything that can be added to the standard browser to put browsing restrictions on without having to turn it on and off with every reboot?

View 2 Replies View Related

Android :: Does Call Blocking App - Time Filters Exist?

Apr 3, 2010

Have been wondering whether there is an app out on the market that blocks phone calls at certain periods of time throughout the day! Such as at night time, I get obnoxious calls that wake me up! Or while I'm in class... Is there such an app that blocks phone calls from like 12AM to 7AM. I've been googling like crazy and I can only find apps that block certain phone numbers.

View 5 Replies View Related

Android : Using Intents / Intent Filters And Mime Types?

Feb 22, 2009

I've been grappling with an issue all day.

I am trying to create a program to deal with .torrent files that are clicked on and/or downloaded by the browser. Currently the downloader reports "Cannot download. the content being downloaded is not supported on the phone"

Im fairly sure this is doable as i recently encountered the same issue with pdf files untill i installed a pdf reader.

View 4 Replies View Related

Android :: What Is Point Of Defining Actions Within Intent Filters On A Receiver Tag

Apr 15, 2010

I'm currently exploring Broadcast Receivers and Broadcast Intent. There are some aspects of the tutorials which are ambiguous to me. To my knowledge this is how the process works. I can broadcast an intent from my application and any receiver on the phone can act on that intent as long as the actions match. I can register a broadcaster receiver on anything that extends Context and when I do so I must provide a filter which will allow the receiver to act on one or more intent actions.The part which confuses me is defining a receiver via the manifest. Must the name of said receiver match a class name? Why should I ever define an intent filter with an action in the project manifest if I always have to provide another intent filter when I register my receiver in code?

View 1 Replies View Related

Android :: Intent Filters - Prevent Creation Of Multiple Activity Instances?

Feb 16, 2010

I added an intent filter to one of my activities, so that when a user clicks a URL like "www.mysite.com", and if my app is installed, my registered activity can be launched. It works well.

I see that this creates a new instance of my registered activity though, every time a link is clicked. Is there any way to prevent multiple instances from being created - just recycle an existing instance if one already exists?

View 6 Replies View Related

Motorola Droid : CES - Smartphone Touch-screen Analysis Tests Finger Fidelity

Jan 10, 2010

Kind of sad, but I guess it's something we all knew deep down anyways.

Smartphone touch-screen analysis tests finger fidelity | CES 2010 - CNET

View 11 Replies View Related

Motorola Droid X :: Wi-Fi Tether And School P2p Filters

Aug 26, 2010

i love my school's wifi, but they have a p2p block that will kick me off my connection if i try to use it. Can i use the wifi tether after connecting to school internet and then connect my laptop to the droidx? will the speeds be comparable to me just connecting straight to wifi? and is there any ways that the p2p filter still might catch me or will this method work? i guess i'll try it anyways and play dumb if i get kicked off my saying "oh, someone must have connected through my phone's wifi tether app"

View 7 Replies View Related







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