Android :: How To Get Access To Accounts Configured In Email Application?

Oct 4, 2010

I'd like to get access to the data stored in the default Email app. I'd like to find out what accounts are associated with the App, and for each account, what folders are associated with the account, and for each folder how many emails are in that folder. I need this information on 2.1 and 1.5. I see the AccountManager in 2.1 can give me some of the accounts configured, but in the Email app you can also add accounts which don't show up in the AccountManager. How do you get access to the accounts configured in the Email app. I'd like to be able to programmatically deleted emails in the users folders. Are the emails stored in a content Provider? If so whats the URI.

Android ::  How to get Access to Accounts Configured in Email Application?


Android :: APIs To Access Email Accounts Or SMS / MMS Messages

May 24, 2010

Does anyone know if there is an API available to access all SMS messages as well as emails in the inbox? 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@google groups.com To unsubscribe from this group, send email to android-developers+unsubscribe @googlegroups.com For more options, visit this group at http://groups.google .com/group/ android -developers?hl=en

View 9 Replies View Related

General :: How To Backup And Restore All Configured Sync Accounts Within Jelly Bean

Sep 11, 2012

I'd like to know if there's a way to backup and restore all your configured sync accounts within JB.

I find it very annoying to have to redo each one after every flash.

Unfortunately TitaniumBackup doesn't work well for this anymore

View 2 Replies View Related

Android :: How To Access And Change Settings For Phone And Email Accounts?

Jun 1, 2010

How can I get and connect to the internet Database of the device so that I can:Obtain the phone number and other carrier information associated with the device? Obtain email settings of the device?Is it possible to change the email settings via an app on the device?

View 2 Replies View Related

Android :: EMail Application Randomly Delete Accounts

Nov 10, 2008

1. I add an account or two (POP3 or IMAP) to the built-in Android Email or Android Market K-9 app,
2. The non-GMail e-mail works mostly OK for some time (a day or two, an hour or two, etc.); (I do get connection errors, I can't completely delete POP3 email, there's no POP3 auto-checking nor notifications, etc.--for now these annoyances are manageable.),
3. At some point in the future, I go into the app to check mail, and POOF! Everythin' B gone. I'm greeted with the setup screen, as though I had not created the account(s) previously,
4. I recreate the account(s),
5. GOTO 2.

View 29 Replies View Related

Android :: How To Send Email In Accounts Than Mail Application?

Sep 17, 2010

We have contracted out an Android app, and our clients are not happy. Can we do what we want? The scenario is an activity that lists data about an event, and a button to compose the email. That works. Except that it always uses the goggle account on the phone. Can email be sent in accounts other than the goggle account outside of the Mail app?

View 1 Replies View Related

Android :: Obtain Email Address Configured On Phone?

Jun 2, 2010

does anybody know how to pro grammatically obtain the email address configured on an android phone? that is the one which was used to activate the phone?

View 2 Replies View Related

HTC Incredible :: K9 Email Application - How To Consolidate Accounts?

Jun 7, 2010

I just installed K9 and I don't see how I can consolidate the 2 accounts I have into one inbox (combined).

View 7 Replies View Related

Motorola Droid X :: Stock Email Application - How To See All Accounts?

Sep 6, 2010

I don't know for the life of me how to see all my accounts I have with the stock email app. I have two AOL accounts, but every time I open the app, only one account shows up. I try pressing "back" and it exits the program. I also tried seeing what I can do when I press the settings button (first left button).

View 1 Replies View Related

Motorola Droid X :: Adding Multiple Accounts Under Email Application?

Jul 17, 2010

I use Gmail for my email, but I find the Email app is easier to use. There is also a Messaging app, but that incorporates texting, etc. I don't want that. I just can't figure out how to add multiple email accounts under the Email app. Under email settings I see where it says default mail account and it shows both of my account, but the front screen doesn't show both accounts?

View 4 Replies View Related

Motorola Droid : Configured To Accept A VPN Email Account?

Jun 5, 2010

Does anyone know if it is possible for the Mot. Droid to be configured to accept a VPN email account? I'm not sure if this would be possible because I use Outlook and don't know how Outlook would be used on the Droid.

View 4 Replies View Related

Android :: How To Access Email Addresses In Application?

Mar 17, 2010

I have the following code through which I am able to retrieve phone numbers. Somehow, I am not able to retrieve email addresses by using android.provider.Contacts.People API.

import android.app.AlertDialog;
import android.app.ExpandableListActivity;
import android.content.ContentUris;
import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import android.os.Bundle;
import android.provider.Contacts.People;
import android.view.View;
import android.widget.ExpandableListAdapter;
import android.widget.SimpleCursorTreeAdapter;
import android.widget.TextView;
import android.widget.ExpandableListView.OnChildClickListener;

public class ShowContacts extends ExpandableListActivity implements OnChildClickListener { private int mGroupIdColumnIndex;
private String mPhoneNumberProjection[] = new String[] { People.Phones._ID, People.NUMBER // CHANGE HERE }; private ExpandableListAdapter mAdapter;
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
// Query for people Cursor groupCursor = managedQuery(People.CONTENT_URI,
new String[] {People._ID, People.NAME}, null, null, null);
// Cache the ID column index mGroupIdColumnIndex = groupCursor.getColumnIndexOrThrow(People._ID);
// Set up our adapter mAdapter = new MyExpandableListAdapter(groupCursor, this,
android.R.layout.simple_expandable_list_item_1,
android.R.layout.simple_expandable_list_item_1,
new String[] {People.NAME}, // Name for group layouts
new int[] {android.R.id.text1},
new String[] {People.NUMBER}, // AND CHANGE HERE
new int[] {android.R.id.text1});
setListAdapter(mAdapter); }
public class MyExpandableListAdapter extends SimpleCursorTreeAdapter {
public MyExpandableListAdapter(Cursor cursor, Context context, int groupLayout,
int childLayout, String[] groupFrom, int[] groupTo, String[] childrenFrom,
int[] childrenTo) { super(context, cursor, groupLayout, groupFrom, groupTo, childLayout, childrenFrom, childrenTo);
} @Override protected Cursor getChildrenCursor(Cursor groupCursor) {
// Given the group, we return a cursor for all the children within that group
// Return a cursor that points to this contact's phone numbers
Uri.Builder builder = People.CONTENT_URI.buildUpon();
ContentUris.appendId(builder, groupCursor.getLong(mGroupIdColumnIndex));
builder.appendEncodedPath(People.Phones.CONTENT_DIRECTORY);
Uri phoneNumbersUri = builder.build();
return managedQuery(phoneNumbersUri, mPhoneNumberProjection, null, null, null);
} } @Override public boolean onChildClick(android.widget.ExpandableListView parent,
View v, int groupPosition, int childPosition, long id) {
AlertDialog dialog = new AlertDialog.Builder(ShowContacts.this)
.setMessage(((TextView) v).getText().toString())
.setPositiveButton("OK", null).create();
dialog.show(); return true; } }

View 2 Replies View Related

Sprint HTC Hero :: Connectivity / No Application Access And Cannot Check Email

Jun 24, 2010

After rooting my Hero the night it came out, I noticed that I'm having connectivity issues. Weather won't update, can't check email, can't access facebook, etc. How to put my phone back to normal?

View 3 Replies View Related

General :: How To Get Email App To Refresh All Email Accounts At One Time

Jan 24, 2014

the email app being the the white envelope, yellow insert icon app. so for example, when i hit one specific inbox, i can either hit "refresh", or pull down for it to retrieve emails. But when i go into "all accounts" I don't see an option.

View 4 Replies View Related

Android :: K-9 Email SMTP Settings For 2 Accounts

May 1, 2010

From BB to Droid I see there is huge difference on emails. Last night I was working with K-9 email.
I have 3 emails: Gmail working OK. Yahoo working OK (using K-9) and there is work account. I can receive emails OK but cannot send any out. Because I cannot use work SMTP server I went and enter my smtp.mobile.mail.yahoo.com port 587 require sign in. There are lots of errors: from push error: null / relay access denied / imap server is not idle capable... Can I have same SMTP under two accounts?

View 6 Replies View Related

Android :: Gmail Vs Other Email Accounts On Phone?

Apr 28, 2010

Can someone tell me if there are differences between using a Gmail email account on my android phone vs. using another email (ie hotmail). Also if there are, what are the differences? You can probably tell I'm new to Android.

View 6 Replies View Related

Android : Best Email App For Aol Accounts - Seven Beta Program

Nov 23, 2010

I was wondering opinions on the best email app for aol accounts. Also, has anyone used Seven Beta Program?

View 7 Replies View Related

Android :: Motorola Droid Deleting Email Accounts?

Jan 13, 2010

Has anyone else had an issue with the Droid completely eliminating email accounts? This has happened to me twice now and it's such a pain in the butt. I have one Exchange account for work and one Pop account (yahoo). Both times I've gone to access my email and the accounts were just gone (my gmail account however remained in tact). I have to go and add them in again and adding Yahoo as a Pop account is no picnic. Does anyone know how to prevent this from happening or if that's even possible?

View 1 Replies View Related

Android :: Multiple Exchange Accounts With One Inbox And Email With Different Labels

May 10, 2010

I have multiple email accounts & would love to find an app that will act like Thunderbird. I want to check all the accounts and look at one Inbox and see all the mail that has come in with different labels. Is there an app that will do this out there?

View 36 Replies View Related

Android :: Email Accounts Showing Negative Amount Of Messages

Nov 26, 2010

I have 2 email accounts that I check on my Samsung Captivate, and I'm having problems with both of them. When I click the Email icon and view both of these accounts, one account shows -1/1 messages and the other shows -1/25 messages. If I get on Yahoo and Gmail and check they show the correct amount. Yahoo has showed this for a few days, and Gmail just started today.Can anyone tell me what is wrong and why they show a negative amount of messages?

View 1 Replies View Related

HTC Aria :: Two Email Accounts

Aug 29, 2010

I just got my aria and love it. My problem is I have two yahoo accounts. One regular and one junk. How can I use both but in different ways. The regular I want notifications the other not. I have downloaded the yahoo app. Is there anyway to have two yahoo apps. The gmail is being used for important emails and the HTC mail is being used for work exchange mail so neither is available.

View 1 Replies View Related

LG Eve :: How To Set Up Any POP3 Email Accounts

Nov 28, 2009

I am unable to set up any POP3 email accounts. I've tried Hotmail, Windows Live, Simpatico, Yahoo and I always get "user name and password are not correct", but they ARE. I was on the phone with Rogers Tech Support for over an hour and we can't figure out why it's not working.

View 26 Replies View Related

Android :: Email Address / Imap Setting Are Restricted Accounts - Can't Sync

Jun 7, 2010

Does anyone know of an App that acts similar to the Blackberry email client? What i really mean is does anyone know of an app that acts as a third party entering your log in details and then pushing emails to your phone (similar to what i believe the BB client does)

I only ask as i wish to connect to my Uni email address and the IMAP settings are restricted on undergraduate accounts, so cant sync in the usual way via IMAP. However, people who have BB's at uni have no issue in connecting to their emails. On asking the IT guys why this is they explained "The reason people are able to use Blackberry?s is due to the fact that they provide there password to an external company to access there mail on behalf of them which is strongly against the terms and conditions of there university account, and as a result should not be doing this at all." Essentially i need an app that mimics this. his new HTC desire?

View 3 Replies View Related

HTC Tattoo :: Can't Connect Email Accounts / Can't Download Apps Off Android Marketplace

Dec 25, 2009

Firstly and most irritating is the fact i cannot download apps off the android marketplace on wifi or 3G. I click download but the progress bar just remains on 'starting download,and secondly i can't connect email accounts properly my hotmail connects and doesn't pick up my emails and i can't even connect my googlemail.com address.

View 11 Replies View Related

KitKat 4.4 :: Setting Up Duplicate Email / Active Sync Accounts On Android 4.4?

Jan 16, 2014

Due to circumstances at my work , I cannot access the internal network outside.

Therefore I have to use exchange active sync to sync my work calendar whilst I am at work.

To access emails outside of work with have a email route setup and a external email host.

The short is I have to add 2 accounts under the same email address. One which will connect to the work network locally over wifi and the other that will just allow me to view work emails externally.

This has worked fine previously but since my phone has been updated to 4.4 kitkat when adding the second account it pops up with a error message about duplicate accounts.

How can i bypass this message and add the second account?

View 1 Replies View Related

HTC EVO 4G :: Adding Multiple Email Accounts?

Jun 10, 2010

I need your help. Coming over from WebOS where I able to add multiple email addresses by simply inputting the user name and password. How do I add my email accounts in Android or is it possible?

View 27 Replies View Related

HTC Hero :: Way To Set Multiple Email Accounts?

Dec 26, 2009

I've setup a g mail account, but i have more than one and a Hot mail account also How do i set these up on my Hero? Do i set them up as POP 3 accounts? If so, what do i need in each of the entry fields? e.g email accounts: zorro1234@googlemail.com, zorro5678@googlemail.com , zorro1234@hotmail.co.

View 13 Replies View Related

Samsung Captivate :: Set Up Email Accounts

Oct 25, 2010

i am very frustrated with the email set up with the captivate!! i set up yahoo and i get error messages, as it is continually searching for messages? when one sets up an account how can you set up a second account? and how do you delete an account? I moved from an iphone to android and so far the os does not seem as intuitive as the iphone?

View 13 Replies View Related

HTC Desire :: Setting Up Email Accounts

Apr 30, 2010

so I'm new to the whole Smartphone thing (my last phone didn't even go on the internet!) so I don't know if I'm missing something really obvious but anyway. I'm trying to se up both my hotmail and yahoomail email accounts so as I can view my messages on my Desire but I'm not having any luck. When I go into Messages and enter my email and correct password I keep getting the message: 'Cannot connect to the mail server to verify your account information. Your server is not responding'.What do I have to do to sort this out? The HTC Desire online manual is very vague and brief with anything regarding troubleshooting.

View 13 Replies View Related

HTC Hero :: Can Add Email Accounts - But Not Bt Connect

Jun 15, 2010

Have added yahoo and google accounts no problem - but comes up with the "mail server not responding" when I try to set up my btconnect account. any ideas? need this set up for my business - driving me crazy!

View 3 Replies View Related







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