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
Mar 24, 2010
Am new to smartphones so bear with me! I've got a few questions about using my Hero to access my email:
1) If I setup the phone to access my email accounts what types of vunerabilities am I opening myself to?
2) If I lost my phone (or it was stolen) could someone read my passwords ... how are passwords stored on the phone?
3) Is it safer to access my email provider thru the browser?
View 4 Replies
View Related
Feb 11, 2010
Are there any emails apps that we can use to replace the stock one? I would like to be able to filter emails but I just don't like the look or feel of the stock one.
View 13 Replies
View Related
Aug 19, 2010
OK I've been running the nightlys and they have been running fine except for the small issue that the native email app included in the ROM(s) never works. I'm trying to use my yahoo email account and when I open the app enter in my email and password I first get a prompt with: "Attention! Mailbox access is not supported for some types of Yahoo! mail accounts etc..."
Then I press OK and then get the initializing screen for "checking incoming server settings" then get a Could not finish prompt error stating that my user name or password is incorrect (which I know is correct and have tried numberous times)
I'm stuck using the lame Yahoo Mail app from the market at the moment, does anyone have a fix for this? Am I the only one experiencing it?
View 10 Replies
View Related
May 26, 2010
Does 2.1 get rid of the default notification? Can you choose a different/custom notification sound for the stock email app that isn't the default notification sound?
View 7 Replies
View Related
Jun 26, 2010
So I've never used Gmail before and I'm playing around with it. I've sent two emails and both have been sitting in my outbox for over 5 minutes. Is there normally this long of a delay in sending email with the Gmail app and is there a way to change it.
View 2 Replies
View Related
May 2, 2010
I'm new to Android development and working on an Android application that requires the phone to be connected to the internet, through either Wifi, EDGE or 3G.
This is the code that I'm using to check whether an internet connection is available
CODE:................
I've also set these permissions in the manifest file.
CODE:.................
This works fine in the emulator running version 1.5 of Android when 3G is enabled, but it crashes when I disable the 3G connection. My application throws a null pointer exception when I call isConnectedOrConnecting(). The same thing also happens on my HTC Desire running Android 2.1.
View 1 Replies
View Related
Jul 9, 2010
I am trying to check internetconnectivity in android and using following code
CODE:..........
But it gives me network/ wifi connectivity if wifi is connected it gives me true and if internet is not connected then it also gives me true.
View 2 Replies
View Related
Oct 23, 2010
Should I have gmail check al my MSN Email or is the stock email application (non gmail)
View 4 Replies
View Related
Jun 29, 2010
I want to create an Android service, which notifies the main activity whenever disconnects and when internet reconnects again. I have following function for checking internet connectivity:.
CODE:...........
But I want to know, how to use it in a service.
View 1 Replies
View Related
Jan 4, 2010
Can anyone tell me why I can't check email when I'm at home on wifi? I can get online but to check email I have to turn wifi off.
View 10 Replies
View Related
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
Feb 26, 2010
just saw this new rom was out wondering if anyone had imput on it?
View 49 Replies
View Related
Feb 1, 2010
I know there isn't a firmware update but for the past 2 days when I go in and check for Firmware updates it says "checking for Firmware update" then it just dissapears, it no longer comes back with "No update available". Anyone else having this problem? I powercycled and pulled the battery and it still does this. It also fails updating my profile and fails updating the PRL. All other data features work just fine.
View 5 Replies
View Related
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.
View 4 Replies
View Related
Apr 19, 2010
My notification light comes comes on as it should , but only blinks for maybe two minutes then stops. Is there any way to have it stay on until you check ( like on all my other phones i have had ?
View 4 Replies
View Related
Feb 11, 2010
How in the world do I check my incoming text messages while using the browser? I hear the notification sound but have no notification bar or any menu options to swith apps like my Blackberry had. On a few random occassions I have gotten a menu just like the one my blackberry would give me when I wanted to switch apps, unfortunately I have no idea where it came from or how it got there. I have tried what seems to be everything and can't find any evidence of this menu even existing,
View 16 Replies
View Related
Feb 3, 2010
My friend forgot his gmail username and is going to hard reset his phone. Is there a way to check your username from the phone.
View 2 Replies
View Related
May 21, 2010
How can I find how much free space / memory I have left on my phone? RAM, MB, etc? I just rooted, installed a ROM and learned how to delete bloatware. Now I want to learn how to monitor my usage of space, and try to make my phone faster.
View 2 Replies
View Related
Oct 22, 2009
So I was very happy to show off my Hero to my friend who just got his pre. Anyway he was on this website to check his internet speed on his pre and so I wanted to check mine. I was averaging ~500kbps and I hit 1000kbps once. But my friend, he was averaging 8.5MBps, yes MBps. Obviously same network, at the same time. What up wit dat?
We also tried to go to websites we had never been to at the same time and he was beating me pretty handly. Anyway, I wanted to see what you guys were getting? Site is mobilespeedtest.com, then it run test and post results! Whoa, just did it right now and I got 1311kbps.
View 33 Replies
View Related
Nov 10, 2009
I am unable to check the notifications screen. I see the icons for new notifications but unable to get to the screen. when I touch the top of the screen and move it down, nothing happens. It was working fine yesterday. Not sure how to fix it and that blinking light is so irritating..
View 2 Replies
View Related
May 19, 2010
On my bus commute to work, using my 2.1 Samsung Moment, I pass through some areas with less than ideal connectivity. Sometimes when I'm accessing a news app, an exclamation point appears and I lose all connectivity. I usually have to restart the phone to regain connectivity. Is there any other way to regain web access other than restarting the phone?
View 5 Replies
View Related
Aug 4, 2010
I'm a big fan of just having direct access to my devices (i.e., no sync, no "management" front end). So this isn't about local access from the device (using MyFiles or Astro), but from a PC in the same location (so not like 3G remote). So far I've explored these options: USB Connect phone, mount from notification menu, and there you go. Bluetooth Pair phone, use "send file" from PC BT app (running in system tray).
Files drop into a 'bluetooth' directory, ready to move/use. Android Web OS Very beta-esque right now, but runs as a service on the phone, then you can access the filesystem (and SMS, eventually other functions). You can copy up to the phone or download (basically via a simple web mechanism). Use across Another service on the phone, a basic FTP server accessible across WiFi.
Works pretty good so far, I created a 'network location' in Windows, then a shortcut on my desktop into my MP3 directory on /sd. So I just open that folder, copy over MP3s. Doesn't matter where the phone is currently sitting or connected. For the services type options, I'm going to check out something like Locale or Tasker, when I can trigger the service to fire up based on a rule (a specific WiFi network trigger would be outstanding).
View 1 Replies
View Related
Dec 25, 2009
Can i access my yahoo email account through my htc hero
View 1 Replies
View Related
Jan 14, 2010
I have a work email pop3, is not a g mail account. Well, i have putted to be notified in 1 hour if i have new emails the problem is the phone didn't check the emails and didn't have the notifications. only if i enter on the "Mail" application i have the new emails.. if i didn't enter, this didn't check the emails. What is the problem?. I have APN droid installed and i have deactivated the 3g 2g gaps. But i have configuration the WIFI to stay connected always.
View 3 Replies
View Related
Jul 25, 2010
Does anyone else have the same problem? When I use the default email client from captivate, even when I set the checking period as every 10mins, I won't get new emails unless I open the app and manually refresh, well, except the one of gmail. This happens on my yahoo email, hotmail and my school email, which all worked fine on my old iphone. People have talked about yahoo mails won't be accessible through wifi from Android, which happens on mine too. But even when I was at 3G, the email client won't auto check it either. I have tried K9 email client, it doesn't work either. The only thing I find work is the MailDriod, but the function of this app is very limited, it won't even open attachments by default. Does anyone else here have the same problem, or maybe an idea to fix the default email client?Also, I find when I use the ear set make calls, when I try to click the button on the ear set, it won't hang up the call as my iphone would. Is this a bug or just something Andriod can't do? The button on the ear set seems quite useless with Captivate, it can only control to play or pause by single click when play music, won't do song change when doule click it.
View 3 Replies
View Related
Apr 25, 2010
I flashed my Hero installed a custom rom and still have no root access? anyone know why this would happen? I installedDamageControl v2.07.2
View 5 Replies
View Related
Oct 13, 2009
I cant seem to access my sd card. I followed the book but still cant seem to find it on my pc.
View 4 Replies
View Related
Oct 8, 2010
The H symbol is displayed at the top of the screen and the arrows occasionally flash. The 'up arrow' flashes more often than the 'down arrow'. I have at least 2-4 bars reception.
However when I try to browse there is a 'data connectivity problem' and websites will not load. None of my apps, gmail, facebook etc will sync.
I am on t-mobile.
Fixes I have tried:
- turn on/off
- APN settings check
- Airplane mode
Have spent hours looking at other 3g threads, but have not found an identical problem. My phone says im connected to 3g ('H'), but will not update email or let me access websites on the browser.
View 2 Replies
View Related
Aug 9, 2010
What is the best way to tell if you lost your root access? I updated my from darch 2.7 to 2.8, and just wanna make sure all is still good. I did it from the Darch updater via my phone. The adjust brightness program that that requires root access works but wireless tether doesn't seem to work. Does my have to be a certain level for the tether to work? It was at 14 percent or some thing like that.
View 1 Replies
View Related