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
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
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
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
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
Apr 14, 2014
We have a Nexus7 that is mostly used by the kids. I keep an eye on what they use it for etc. today I found that on my sons account a popup keeps appearing in the centre of the screen saying "Ad Service" and then a number, for instance "Ad Service470" This displays for a couple of seconds disappears and then reappears with the next number, ie "Ad Service471".
I asked him how long this has been happening and got the answer "oh ages" as if it was of no concern (bloody kids).URL....
View 2 Replies
View Related
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
Oct 25, 2010
Have setup email for yahoo ok and get Inbox But none of my other folders. Can't the mail app handle them?
View 4 Replies
View Related
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
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.
View 1 Replies
View Related
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
Oct 27, 2010
I just got my new Captivate and synced up my corporate e-mails.Everything came in fine, but it provides me with EVERY sub folder in my inbox along the top and when I consolidate it .it doesn't last.Is there a way to only display the basic Inbox, Sent, Draft, Deleted boxes?
View 1 Replies
View Related
Mar 26, 2010
There is no way to get different folders for the email is there? i.e. a junk folder or whatever else my hotmail has?
View 1 Replies
View Related
Dec 14, 2009
New to this forum. Just bought my Hero the other day and am loving it! As a die-hard Apple fan who's stuck with Sprint, I'd say the Hero get's high marks in my book.Anyway, I'm a MobileMe subscriber and have all my various email addresses funneling down to my MobileMe account. I set up the Mail app to retrieve email from my MobileMe account via IMAP but am having a bit of trouble with the Sent and Trash folders.The Android Mail client is creating a secondary Sent and Trash folder even though "Sent" and "Trash" already exist in MobileMe. I noticed that there's also a Deleted Messages and Sent Messages folder as well in the Android Mail client.I tried out the K-9 Mail client which allows you to remap the folders (I remapped Sent to Sent Messages and Trash to Deleted Messages), but I'm not a big fan of K-9 and love how the default Mail app works.Does anyone know how I might be able to remap folders or get the Sent/Trash folder in the Android Mail client to map to the Sent/Trash folder in MobileMe?
View 7 Replies
View Related
Aug 31, 2010
For some reason, my inbox for my IMAP connection to the office email decided to empty itself on my Desire (2.1).An email arrived and I opened the inbox (not the email) and my inbox was empty.I have just popped in to the office (day off - typical!) and all my email is still there so it's not a total loss, just a little confusing since everything was working sweetly.The email server is based on an OS X 10.6.4 server in the office (not that this should have anything to do with it really).I've been through checking the settings and they're all OK. Only thing I haven't tried is removing the account and putting it back on. Might give that a try later on.
View 1 Replies
View Related
Sep 7, 2009
Is it possible to get the mail app to display unread counts for imap folders?
I have a bunch of server-side filters that move unread email into different folders, but its not possible on the Hero to see which imap folders have unread items (except In box). I've tried both the Mail app and K-9 but couldn't find a setting to show them. Anyone else figured it out?
View 5 Replies
View Related
Sep 15, 2010
Does anyone know how to accomplish adding to my application's launcher icon the circular badge with a number inside of it (indicating number of unread emails) like the HTC mail application does? I know how to do this for notifications, but not for the launcher icon.
View 2 Replies
View Related
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
Nov 25, 2009
I have a MyTouch and a G1. I used to have an Iphone. On my Iphone, when I would get a new mail message it would light up a red number with how many emails there were on the MyTouch and G1 I get a little notification in the status bar at the top of the phone. My question is on the Iphone if the email notification was lit up with a number of emails that I had... and I went into my HOME computer (or any other computer) and read my email the next time the Iphone would go out to check for mail it would find zero there and turn off the notification. But on my MyTouch and G1, if it goes out to check email and there is none (because it was read elsewhere) it does NOT turn that notification off and it always looks like you have mail until you go into your email on the phone and check only to find none. Any way to fix this?
View 2 Replies
View Related
May 3, 2010
Ok. So I've switched from a Moto Droid to an Incredible. The contacts are a bit different. I'm having a problem, and HTC customer service says there's no solution. With the Droid you could choose to label a number for a contact (assuming the contact has multiple numbers or e-mails) as the primary number. I never figured out how to get rid of any primary designation, but that's another matter. Well, with the Incredible, the People app automatically designates a number as primary. You can change the primary number, but you can't eliminate it, which is annoying for two reasons: 1. in the dialer, when you type the person's name only the primary number comes up and 2. in the People app when you tap on the contact's photo to get the methods of contacting and then press phone, it auto dials the primary number only. I have several contacts who use multiple numbers with equal frequency. Plus, to top it off, HTC's People app listed the wrong number as the primary in many instances, which means I have to go through all my contacts on the phone. This is a phone-specific feature and is unrelated to Google contacts. So, that's my complaint today. It's purely about functionality, and it applies equally to e-mail addresses as well as phone numbers.
View 6 Replies
View Related
Nov 30, 2012
Using k9 mail (v4.311) on my android device. I have it set to retrieve at most 500 messages.
However, this does not limit the actual # of messages stored on the device itself. My initial assumption was that after 500 messages were retrieved, on subsequent retrievals, new emails would replace the oldest. This does not seem to be the case. As new messages are received, old ones still remain.
Is there a way to set this software to keep at most a certain # of message - that is, to have new messages REPLACE older ones?
If not, what software/app provides this functionality?
View 2 Replies
View Related
Nov 21, 2009
i have a Gmail account setup with a pop account tied to my Gmail. on my phone I only have the Gmail account. It does show an @ sign when i get pop mail via Gmail however it doesn't show up as a number on the mail icon. only when i get a true Gmail email does it show up as a number on the icon. once i go into mail and preview the email (pop) it will show as a number on the icon. any ideas?
View 6 Replies
View Related
Nov 17, 2010
I can make calls ok and send and receive text. I have my voice mail set up but when I receive calls if I miss the call it does not go to voice mail and the caller get a message saying the number is not recognized. Does anyone know if this is a phone problem or a network problem only had this since I have had my X10.
View 1 Replies
View Related
Nov 25, 2009
should the voice mail icon have a number on it like the email or text icons if you get a new voicemail? If I get a notification, it only shows up on the task bar. I was also experiencing not recieving texts. I have since done a reset which fixed the text issue (and sleep-for now), but not the voicemail. Should I take the phone back? I fear its anotjer software bug, not hardware. I love this phone, but I'm getting very annoyed that it can't even do what its suppose to.
View 3 Replies
View Related
Feb 17, 2010
I usually view email with attachments from my pc because I usually lack the time to download the attachment. Today, I had some spare time so I tried to download an attachment. It downloaded fine but when I went to view it, I received a pop-up box to save it to the sd card. After pressing ok, I was told the save was successful but now I can't find it. Aside from pics and videos, how do I access other folders with saved data?
View 6 Replies
View Related
Aug 12, 2010
I would like to forward all calls to my number on to the new predefined number automatically. Is it possible to forward incoming call? Probably it is possible for Froyo at least. I found application called Easy Call Forwarding. But many people reckon it dosen't work actually. We can notice forwarded call by onCallForwardingIndicatorChanged() from PhoneStateListener but I have no idea how to set forwarding mode.
View 1 Replies
View Related
Dec 16, 2009
Google Voice Blog: Upgrade to a Google Number
View 4 Replies
View Related
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
Apr 2, 2010
The following code will display location data on the screen in the emulator but not on an actual device. code...
View 14 Replies
View Related
Oct 10, 2010
I have a simple program where I set a spinner to a position. I then call a second module and when I return, I reset the spinner. The spinner display does not display the spinner value. When you tap the spinner, it IS pointing to the correct value, but it displays an incorrect value. In fact, it actually steps down.
I wrote the following simple program to demonstrate. This only happens when the form has a spinner within either a Linearlayout or TableLayout with at lease 1 other element.
CODE:................
View 1 Replies
View Related