General :: How To Limit Number Of Audio Notifications In A Minute

Dec 11, 2012

Just want to know if theres an app/zip that allows you to control the number of times that your phone will give off an audio notification in a predetermined amount of time ? Like if I'm using an IM app and don't want it ringing more than 3 times in 30 seconds. Hope you understand what I'm asking.

General :: How to limit number of audio notifications in a minute


General :: Server Response - Exceeded Login Limit For 15 Minute Period?

May 26, 2012

On a hTC Desire S a friend is having a problem when opening the Mail app. He can't see any mail in any folders other than trash, and gets the following message when he opens the app: Server response: exceeded the login limit for a 15 minute period. Reduce the frequency of requests to the POP3 server.

View 2 Replies View Related

General :: Putting Limit On Max Number Of Apps That Can Stay In Task-switcher Cache?

Mar 24, 2012

how about putting a limit on the max number of apps that can stay in the task-switcher cache? or allowing selectively selecting which ones stay in the memory N others like tools n utilities frontends (like cpu spy, callrecorder, camera, setcpu no frills, etc) should get the heck out of the cache.

the ideal would be to have only 4 real-app (not utility/tool) [not]processes /cached tasks/ at max for 512mb fones (like my xperia s) and maybe 6 for 1gb ones.

View 3 Replies View Related

General :: Limit Time Speech Recognizer Listens For Speech For X Number Of Seconds

Apr 4, 2012

I am developing an app that uses the speech recognizer but I only want the speech recognizer to listen for speech for x number of seconds regardless of when the last speech input was or was not recognized. I looked through the speech recognizer documentation and I didn't see parameter to set the exact time the speech recognizer runs for. How I could accomplish this?

View 2 Replies View Related

Android :: Limit To Number Of Touch Inputs In Application?

Jul 26, 2010

I have a small test app on Android that is meant to test tracking multitouch input, but I am only ever getting two touches at the same time on my Evo. Does anyone know if this is a limitation to Android or the hardware? By the way, here's my test class so you can try it out yourself.

import java.util.HashMap; import android.content.Context;
import android.graphics.Canvas; import android.graphics.Color;
import android.graphics.Paint; import android.graphics.Paint.Style;
import android.view.MotionEvent; import android.view.View;
public class PressureView extends View {
private HashMap<Integer, Spot> mSpots = new HashMap<Integer, Spot>();
private final int[] mColors; private final Paint mPaint;
public PressureView(Context context) { super(context);
mPaint = new Paint(); mPaint.setStyle(Style.FILL);
mColors = new int[]{Color.RED, Color.GREEN, Color.BLUE, Color.YELLOW, Color.MAGENTA};

} @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas);
canvas.drawColor(Color.WHITE); for(int id : mSpots.keySet()) {
Spot spot = mSpots.get(id); mPaint.setColor(spot.Color);
canvas.drawCircle(spot.X, spot.Y, spot.Pressure*500, mPaint);
} } @Override public boolean onTouchEvent(MotionEvent event) {
System.out.println("***" + event.getPointerCount() + " Pointers");
for(int i = 0; i < event.getPointerCount(); i++) { int id = event.getPointerId(i);
Spot spot = null; if(mSpots.containsKey(id)) { spot = mSpots.get(id);
} else { spot = new Spot(); spot.Color = mColors[mSpots.size()]; }

if(event.getAction() == MotionEvent.ACTION_UP) spot.Pressure = 0;
else spot.Pressure = event.getPressure(id);
spot.X = event.getX(id); spot.Y = event.getY(id);
mSpots.put(id, spot); } invalidate(); return true;
} private class Spot { public float X, Y, Pressure; public int Color; } }

View 1 Replies View Related

Android :: How Do You Limit Number Of Folders K-9 Mail Displays

Mar 16, 2010

I have a very large number of (corporate) folders in Outlook which I don't want/need to access on my Milestone, but I can't figure out how to stop them being displayed.

View 1 Replies View Related

Android :: How To Limit Number Of Same Activity On Stack For Droid App?

May 10, 2010

Is this possible in an Android app? I want to make it so that no matter how many times a user starts activityA, when they hit the back button they will never get more than one occurence of activityA. What I am finding in my current code is that I have only two options 1. I can call finish() in activityA which will prevent it from being accessible via the back button completely, or 2. I do not call finish(), and then if the user starts activityA (n) times during their usage, there will be (n) instances when hitting the back button. Again, I want to have activityA accessible by hitting the back button, but there is no reason to keep multiple instances of the same activity on the stack. Is there a way to limit the number of instances of an activity in the queue to only 1?

View 2 Replies View Related

HTC Desire :: How To Limit Number Of Saved Messages In Handcent?

Jul 26, 2010

Can anyone tell me how to limit the number of saved messages for each thread in Handcent please? I am sure I have seen this option somewhere in the settings but cannot find it now.

View 1 Replies View Related

Android :: Limit For The Number Of Files In Directory On An SD Card?

Apr 16, 2010

I have a project written for Android devices. It generates a large number of files, each day. These are all text files and images. The app uses a database to reference these files.

The app is supposed to clear up these files after a little use (perhaps after a few days), but this process may or may not be working. This is not the subject of this question.

Due to a historic accident, the organization of the files are somewhat naive: everything is in the same directory; a .hidden directory which contains a zero byte .nomedia file to prevent the MediaScanner indexing it.

Today, I am seeing an error reported:

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

Regarding the sdcard, I see it has plenty of storage left, but counting

$ cd /Volumes/NO_NAME/.hidden
$ ls | wc -w
9058

Deleting a number of files seems to have allowed the file creation for today to proceed.

Regrettably, I did not try touching a new file to try and reproduce the error on a commandline; I also deleted several hundred files rather than a handful.

However, my question is: Are there hard limits on filesize or number of files in a directory?
am I even on the right track here?

Nota Bene: The SD card is as-is - i.e. I haven't formatted it, so I would guess it would be a FAT-* format.

The FAT-32 format has hard limits of filesize of 2GB (well above the filesizes I am dealing with) and a limit of number of files in the root directory. I am definitely not writing files in the root directory.

View 3 Replies View Related

Android :: Limit To Number Of Contacts That Can Synch With Gmail?

Jan 7, 2010

I have 9,557 Contacts.

It seems as though I cannot add any new contacts from my phone.... I can only add new contacts from the web (Gmail and/or Google Voice).

Is there some Limit to the number of Contacts that can Synch with Gmail?

(I have a Motorola Droid on Verizon.)

View 4 Replies View Related

Android :: Way To Limit Number Of Words That Can Be Entered In Droid EditText View

Nov 6, 2010

What's a good way to limit the number of words that can be entered in an android EditText view?

View 1 Replies View Related

HTC EVO 4G : How To Get Number Of Notifications To Appear In Addition?

Aug 2, 2010

How do i get the number of notifications to appear in addition to drop down menu?

View 3 Replies View Related

General :: WiFi Disconnect Every 1 Minute On Fire XT 530

Dec 23, 2012

I've fire xt 530 with stock rom 2.3.5 >> I made a Wifi access point Connection With Connectify And I Conneted It to My Phone But it Disconnect EVery 1 min ! My phone is rooted And i set wifi sleep policy To Never !

View 3 Replies View Related

HTC Incredible :: Anyway To Turn Off Audio Notifications?

Jun 2, 2010

Anyway to turn off audio notifications while I'm sleeping without manually adjusting it each night?

View 5 Replies View Related

KitKat 4.4 :: Audio Notifications From Stock Email App

Apr 4, 2014

I'm running KitKat (4.4.2) on a MotoX, and I use the stock Email app for a work account. When the phone is locked with all notifications cleared, the first new email to arrives causes the notification sound to play- but no additional sounds play when more new emails arrive if I don't unlock the phone and clear the first one. Is this normal behavior for this app now? I would really like to find a way to get an audible alert for all new Emails like I used to get on my old Android 2.X phone.

View 2 Replies View Related

KitKat 4.4 :: Notifications Interrupting Audio Playback?

Apr 3, 2014

On Android 4.3, and playing any type of media such as MP3 or movies, and a text message, e-mail, or any other type of messages is received, unless the phone is actually muted the audio playback is interrupted with a notification. Has that been addressed in KitKat?

I'd like the option to dis-able audio notifications (blinking LED or vibrate is preferred) so the audio experience isn't interrupted.

View 5 Replies View Related

General :: HTC One - 4G Connection Connected For 30 Seconds To A Minute And Revert Back To 3G

Apr 3, 2014

I have been having a problem with my HTC One phone since I got it. My 4G connection will stay connected for about 30 seconds to a minute, and then it will revert back to 3G. I have already looked this up before and I have done the following:

-Changing my network mode setting to "LTE/CDMA", and then restarting the phone
-Making sure all recent updates have been installed
-Making sure my plan was actually eligible to connect to 4G (it is)
-Making sure there is 4G coverage in my area (again, it is)
-Always leaving "Automatic Connections" on

View 2 Replies View Related

Android :: Changing Number Of Vibration Alert For Different Notifications

Jan 4, 2010

One little thing I miss on my Blackberry was that I had it set to vibrate once for Social Network notifications, twice for an email and three times for an SMS. That way I knew how important it might be and whether to take it out of my pocket. My T-Mobile G2/HTC Hero (1.5) doesn't seem to have the option to change the default "vibrate twice". Is there any way of changing it? Or an app that might do it?

View 1 Replies View Related

General :: Forward Selective CID / Phone Number To External Number

Feb 15, 2012

Basically, i use my personal cell phone for work and personal use, i have multiple exchange accts that keep things sorted and seperated.

recently though i have been getting more and more business calls to my cell phone, during and outside of normal business hours.

what im looking for is an app that will take a selective group of contacts/phone numbers/CID strings and if it is a "business" call then forward it to a specific phone number (external number, the actual business line).

I have seen apps on the market and around that will forward calls to voicemail if they match certain filters, but i cant really seem to find an app that will forward to an external number. Any way I could accomplish this?

View 1 Replies View Related

General :: Pin Number Put On Android Tablet 4.1 And Number Forgotten

Jan 13, 2014

My son decided to lock his tablet with a random number he plucked from the universe! one that he can't remember! I'm pretty sure it's a MID here is the link to where I got it from. 8G 7" Android Tablet 4.1 Dual Cam Keyboard Case | Trade Me. I have tried all the different power volume button combos that were suggested on web, also have tried downloading the program to my pc to share info with the tablet, but the information sharing must not be turned on in the tablet, as when the device showed up in my computer it was empty! Where I purchased it from will send me a Getroot, but I have to pay and I'm not sure if this will even work!

View 1 Replies View Related

Android :: Way To Loop An App Every 1 Minute?

Mar 30, 2009

Does Android have a special way to loop an application every 1 minute? Or do you know of any applications (with source) that I could look at? Apparently if I use Thread.sleep(1000*60); the application may time out on me and need me to click a wait button - I just want it to keep looping forever. Apparently the when you sleep() a thread it stops running for the time given

View 3 Replies View Related

General :: How To Disable Or Limit Autobackup

Nov 5, 2013

How do I disable or limit the "autobackup" function on my phone?

View 1 Replies View Related

General :: How To Limit Cache Size

Jun 9, 2012

I do really love cloud computing... But, Google seems to have forgot something: set a limit to the cache size.

I have a Nexus S and my poor 16Gb internal memory is saturated because of caches: Google+, Android Gallery (Picasa), Google Music and Google Listen all fight for the sdcard space.

The only apps who have explicit cache settings is Google Listen... The others don't have obvious options. I have 10K songs, 10-20K photos, etc.. I need to access them, but I need to limit the cache size.

Is there a way to easily limit cache size per apps?

View 1 Replies View Related

General :: WiFi Data Limit App?

Jun 30, 2013

I want to limit children phone usage. Now I use combination: Avast, Norton Family, Datalock and Applock. This works fine when using only mobile network. Other child doesn't have mobile data, only wifi. I couldn't find app to limit data in wifi?

View 1 Replies View Related

General :: Call Log Limit - Entries In RED?

Feb 6, 2013

I noticed some call log entry have ALL THE DATE in red, what does it means?

Read few posts below to see about the "call log limit"

GT-i9100 using Tapatalk 2

View 9 Replies View Related

General :: How To Limit Data Usage On LG 4x

Nov 4, 2012

I only have 750 MB, and I'm going way over that. How can I get my phone to use wi-fi as much as possible? There's wi fi in alot of the places I work but not at home. Most of the usage seems to be software updates, and google play store updates, and a few other apps being updated. Can it not wait to do those updates until wi fi is available to save my data. I'm with Orange btw, and the local wi fi netwrok is with O2.

View 2 Replies View Related

General :: Change MMS Limit Size?

Sep 14, 2012

Is there any way I can change the mms limit size I can't send video. I have to ask my friend with a iPhone to set a video for me.

View 2 Replies View Related

General :: Increase SMS Limit On HTC EVO 4G+ X515e

Sep 24, 2012

I've got a HTC Evo 4g+ x515e (HTC RIDER) which is released in Korea. I've updated the OS from 2.3.3 to 4.0.3 ICS. The rom installed was OLLEH. It seems like when updated the OS, the rom was deleted. Is there any roms for ICS on HTC Evo 4g+ x515e (HTC RIDER) to access and change sms limit count?.

Software # 3.10.1010.1
Baseband Version 11.76.3504.00U_11.24.3504.18_M
Kernel Version 3.0.16-g31e551c
htc-kernel@u18000-build-144 #1
SMP PREEMPT
Build number 3.10.1010.1 CL417084 release keys

View 4 Replies View Related

HTC EVO 4G :: Swype Phone Used To Go To Sleep After A Minute?

Jun 17, 2010

I'm definitely diggin' Swype on my Evo, however I've got a question that hopefully has a simple answer. My phone used to go to sleep after a minute, which is what I like/want. Since I installed the Swype Beta today, it won't. I have to go and tap my power button to make it sleep. Is there a work around for this?

View 20 Replies View Related

Android :: How To Calculate Beats Per Minute?

Sep 25, 2010

I would like to record from the device microphone and then be able to calculate the beats per second of the recorded audio, is it possible and how? is there any open source project I can look?

View 1 Replies View Related







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