Android :: Selecting Phone Information Stops Unexpectedly

Jul 4, 2010

I have a Motorola i1 which has the 1.5 software.When I press *#*#4636#*#* on the i1, it accesses the hidden menu.when i do that, and select 'phone information' i get the error 'com.android.phone' has stopped unexpectedly.does anyone else get this error? I'm trying to access this menu to change the SMS service number which i believe is there

Android :: Selecting phone information stops unexpectedly


Android : Facebook For HTC Sense Stops Unexpectedly

Nov 2, 2010

I have the EVO and I recently added a new Facebook contact. When I go into people>online directories>facebook he shows up in my friends list (which is great that it synched up). When I select the contact, his details pop up fine (again great). However, when I select the refresh icon at the bottom (which is supposed to pull up his wall) I get the error message "The application Facebook for HTC Sense (process com.htc.socialnetwork.facebook) has stopped unexpectedly. Please try again." The only option I have is to select "force close" in the error window. This seems to be the only contact this is happening with, so I'm not sure what the problem is. I have tried logging out and back into Facebook for HTC Sense, but that has not solved the issue.

View 1 Replies View Related

General :: SD Card Stops Working Unexpectedly?

May 27, 2013

I have Huawei u8600 sonic rooted and with Cyanogen 9 ROM for this phone. Everything is working fine, but I noticed that sometimes my phone just doesn't find SD card. After reboot it works fine again for a while, but after an hour or two it happens again. There is no message about SD card being removed or something, it just disappears. I have most of my apps moved to SD card, so this really annoys me, because without SD card I can't use most of my phone's programs.

View 1 Replies View Related

Samsung Fascinate : Everything Stops Unexpectedly - Gmail Calendar Media Message Just Keeps Popping Up Every 3 Seconds

Sep 30, 2010

So I got my fascinates just last week, and my wifes phone has been acting crazy a bit, and I am sure its one of the thousands of apps she has installed. So I went into the 'recovery menu' and cleared the cache and did a factory reset from there to just restore to factory state, and now everything stops unexpectedly. Gmail, calendar, and most of all, media message just keeps popping up every 3 seconds or so. If i remove the sd card the media message will stop, but if I launch things like gmail, calendar, car dock, video player, etc., they all stop unexpectedly. I cannot even setup the market place again due to this failing, does anyone have any ideas why this is happening and what I can do to fix it?

View 1 Replies View Related

Android :: Android Application Stops Unexpectedly

Feb 24, 2010

In the emulator, it shows me the information: The application my_app_name (process pack_name) has stoped unexpectedly.Pls try again. Because I just add many field in the layout.xml file? I am a newbie in Android development.

View 2 Replies View Related

HTC Droid Eris :: Phone Randomly Selecting Items

Aug 25, 2010

So the past month or two, my Eris has been randomly highlighting/selecting icons, shifting from the home screen all the way to the screen on the left, and moving the cursor around as I type, making it difficult to text or search.

I did some reading from other people that had the same issue and others replied saying it had to do with the trackball. I have had my phone replaced three times and all have the same issue.

View 8 Replies View Related

HTC Desire :: Infopath And Selecting Using Emailed Phone Numbers

Nov 26, 2010

Hope somebody can help with a couple of issues that are driving me mad with my HTC Desire

1. If I get a phone number sent via a text or email and it has a space in it, I cant select it to dial.

2. I get emails from people that use Infopath but not all the fields show up. I have searched the web for apps etc. but cannot find much help. Is this an Android issue? Any help would preserve my sanity.

View 3 Replies View Related

Android :: Sync Information And Future Information

Jul 7, 2010

I am a Mac user (photographer/ videographer). I also rely heavily on my iPod Touch when mobile (i can often find a wifi signal when i am out and about). I use iCal on the Touch and iCal on my Mac as well as the address book on both everyday and as a Mobile Me user, my two devices sync so everything is mirrored and up to date. I also HATE AT&T for their terrible signal strength and coverage and have been a loyal Verizon customer for many years and this is why I don't have an iPhone. Okay, all that being said, is there an easy way to still use everything I love and rely on with my Mac (the calender and address book, mainly) and easily sync all of my existing information and future info to an Android based device? How easy is it to use an Android device with a Mac? I don't want to have to manually re-enter my entire address book into a new device.

View 8 Replies View Related

Android :: Application Stopped Unexpectedly On Phone But Not On Simulator

Mar 8, 2010

I have an MapView app downloaded from Internet, when I tested it on the simulator, everything is fine, but when I installed it on my phone, the app stopped unexpectedly. Here is the code

public class CurrentLocationWithMap extends MapActivity {
MapView map;
MapController ctrlMap;
Button inBtn;
Button outBtn;
ToggleButton switchMap;
@Override protected boolean isRouteDisplayed() { return false;
} @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
setContentView(R.layout.main);
map = (MapView)findViewById(R.id.myMapView);
List<Overlay> overlays = map.getOverlays();
MyLocationOverlay myLocation = new MyLocationOverlay(this,map);
myLocation.enableMyLocation();
overlays.add(myLocation);
ctrlMap = map.getController();
inBtn = (Button)findViewById(R.id.in);
outBtn = (Button)findViewById(R.id.out);
switchMap = (ToggleButton)findViewById(R.id.switchMap);
OnClickListener listener = new OnClickListener() {
@Override public void onClick(View v) { switch (v.getId()) { case R.id.in: ctrlMap.zoomIn();
break; case R.id.out: ctrlMap.zoomOut();
break; default: break; } } };
inBtn.setOnClickListener(listener);
outBtn.setOnClickListener(listener);
//switchMap.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override public void onCheckedChanged(CompoundButton cBtn, boolean isChecked) {
if (isChecked == true) { map.setSatellite(true);
} else { map.setSatellite(false); } } });
LocationManager locationManager;
String context = Context.LOCATION_SERVICE;
locationManager = (LocationManager)getSystemService(context);
//String provider = LocationManager.GPS_PROVIDER;
Criteria criteria = new Criteria();
criteria.setAccuracy(Criteria.ACCURACY_FINE);
criteria.setAltitudeRequired(false);
criteria.setBearingRequired(false);
criteria.setCostAllowed(true);
criteria.setPowerRequirement(Criteria.POWER_LOW);
String provider = locationManager.getBestProvider(criteria, true);
Location location = locationManager.getLastKnownLocation(provider);
updateWithNewLocation(location);
locationManager.requestLocationUpdates(provider, 2000, 10, locationListener);
} private final LocationListener locationListener = new LocationListener() {
public void onLocationChanged(Location location) { updateWithNewLocation(location);
} public void onProviderDisabled(String provider){ updateWithNewLocation(null);
} public void onProviderEnabled(String provider){ } public void onStatusChanged(String provider, int status, Bundle extras){ } };
private void updateWithNewLocation(Location location) { String latLongString;
TextView myLocationText;
myLocationText = (TextView)findViewById(R.id.myLocationText);
if (location != null) { double lat = location.getLatitude();
double lng = location.getLongitude();
latLongString = "Latitude:" + lat + " Longtitude:" + lng;
ctrlMap.animateTo(new GeoPoint((int)(lat*1E6),(int) (lng*1E6)));
} else { latLongString = "Position not found";
} myLocationText.setText("Current location: " + latLongString);
} }

View 7 Replies View Related

Samsung Vibrant :: Process Com.android.phone Has Stopped Unexpectedly

Oct 9, 2010

I cannot access SD card and phone store in the settings.The process com.android.phone has stopped unexpectedly.Has anybody run across this problem? I can only connect my phone via Kies now and this is extremely frustrating.Even when I connect my phone to charge now, it still goes in to Kies! Ahh! Help would be much appreciated.

View 2 Replies View Related

Android : Service Killed Unexpectedly - Phone Doesn't Lock The Notifications Are Generated

Nov 10, 2010

I have an Android service that's responsible for firing notifications at certain points in time. I use an android.OS.CountdownTimer for this. An activity creates and starts the service. If the phone is locked, notifications that are within let's say 1min are shown. Notifications that are much later are never shown. The service is unbound from the activity when the activity is onpause.

As long as the phone doesn't lock the notifications are generated, even if the activity is stopped and unbound from the service.

It seems to me that the service is stopped/killed. When I make the application debuggable and debug it on target, it works fine, also when the activity is stopped and the service is unbound.

The app is developed for v1.5 and runs at Galaxy S with 2.2.

Service is started as shown below

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

View 1 Replies View Related

Android :: Service Stops Working When Phone Locked

Nov 9, 2010

I have an application which starts a service. The service has a timer and pops a notification every 30 seconds. I notice the following behavior: if the screen is on the notifications are shown ok (even if the app is in background). if the screen is off (by power button or by itself) the notifications won't show. if the screen is off but I have the debugging running the notifications appear. How can I make the service run with the screen off. (The actual app only checks if a notification should be checked every 30 seconds, but for testing purposes, the above scenario is ok)

View 2 Replies View Related

Android :: How To Retrieve Account Information In Phone?

Jul 29, 2010

For retrieving the accounts (information) in Android versions since 2.0 you can use the Account Manager that has been introduced in Android 2.0. But now I have the problem I want to maintain compatibility with atleast Android 1.6, is there any way to retrieve account information in Android 1.6?

View 1 Replies View Related

Android :: Mobile Information For Installing Corresponding App On Phone?

Nov 18, 2010

How to find out mobile information.for installing corresponding app on mobile.

right now i am using useragent.what i will do for useragent not supported mobile .

View 1 Replies View Related

HTC Droid Eris :: Phone Reboots Unexpectedly Once Or Twice Per Day

Aug 4, 2010

Ever since the Droid Eris 2.1 OTA update 7/18/10, my phone reboots unexpectedly once or twice per day.

I had no problems like this with 1.5, the update to 2.1, it started after the latest OTA update. The OTA installed without any problems.

Anybody with a similar problem or a solution?

View 6 Replies View Related

Android :: SMS Text Log Is So Long That Phone Often Freezes And Stops Responding

Jul 12, 2010

On my Samsung Moment, me and my girlfriend's SMS text log is so long that my phone often freezes and stops responding 2 or 3 times before I can finally read something she just sent. We're talking almost 5000 messages here. I don't want to just delete them all so it goes faster tho, I'd really like to log them away in case I ever want to read them again. Does anyone know how I can do this? I couldn't seem to find them by just browsing the phone during usb connection.

View 1 Replies View Related

Android :: Way To Fetch Email Location / Other Contacts Information In Phone?

Dec 3, 2009

I am new to ANdroid . I am not able to fetch email location and other contacts information in android2.0. Although i m able to fetch contact name and phone number.

View 3 Replies View Related

HTC Droid Eris :: Phone Not Working - Process Stopped Unexpectedly

Mar 10, 2010

The process com.google.process.gapps has stopped unexpectedly. please try again.
The process com.android phone has stopped unexpectedly. please try again.
So when I start my droid eris up this is what I am getting. The phone gets no signal. When I start up the phone is asks me if I want to use "htc sense" or "home". I did download "91pandahome" and I guess also "home". I can't go to settings and turn on WiFi or mobile 3g. iIhave no cell signal.

View 9 Replies View Related

HTC EVO 4G :: Stops On Activating Phone Online

Jun 25, 2010

When I go to activate it online it goes through everything fine but stops on "activating phone" and a red box comesup saying they need to assist me with activation to please call from another phone or click the chat link. Well the chat is down and I don't have any other phones besides the phone I want to deactivate for the evo. Could I take it to the sprint store to get it done or will they give me flack for buying one off ebay to use?

View 6 Replies View Related

HTC EVO 4G :: Charging Phone Stops When Text Comes

Aug 23, 2010

When I receive a text message while charging the charging stops until I close the pop up for handcent. Does anyone else have this problem or know a fix for it?

View 1 Replies View Related

HTC Desire : Phone Stops Ringing

Nov 2, 2010

How do seen few adverts recently from HTC and seen a few good features and was wondering if my HTC Desire was able to get them.Phone stop ringing when turn phone over.Find phone by ringing it from computer and 1 for 'built in compass' for phone which my Desire doesn't have but what about the other 2?

View 13 Replies View Related

Android :: Retrieving Contact Information (Name - Number And Email) From The Phone Book

Jun 8, 2010

I am working on Android SDK 1.5, I need to read the person name, phone number & Email ID from the phone book. I searched on forums - net & got some guidelines to read the contacts & the phone number of a person. But could not find any way to retrieve the email-id from phone book. So, please help me for the same.

View 2 Replies View Related

General :: Get Contacts Information From Web To Android Phone Book Without Manually Typing?

Feb 15, 2014

Isn't there a way I can get contact information I find on the web into my Android phone book without having to pull out my phone and typing it in by hand?

I thought there was a way, maybe I had to add something to my computer where I could type highlight the name, address and phone number, right click up a menu and have it all added to my phone book.

View 3 Replies View Related

HTC Desire :: New SD Card Stops Phone Booting?

Aug 5, 2010

I bought a new 16gb SD card, but when I put it into the phone and try to boot it up, the phone just hangs with the boot up screen playing over and over? Anybody else had anything similar? I've inserted the SD card into a mates laptop, and it recognizes it fine. Running a rooted handset with DeFrost ROM.

View 3 Replies View Related

HTC EVO 4G :: Pandora Stops Playing After Phone Locks

Jun 15, 2010

So I was doing a bunch of tricks for the battery and now when ever my phone locks pandora will not play until I unlock it again.. Any Ideas? Seems like some setting I turned off doesn't allow data to flow when its locked or something.

View 4 Replies View Related

General :: Phone Touch Stops Responding?

Jan 13, 2014

My phone touch stops responding after using it for some time after locking screen .

Micromax A26

View 1 Replies View Related

HTC Desire :: Updating About Phone Information

Apr 18, 2010

Received my HTC Desire this week and its amazing. I've ported over from another provided and it appears that Phone Information in the About Phone Section contains my temporary port number.Can this be updated? Or is this information taken from the SIM?

View 4 Replies View Related

HTC EVO 4G :: Delete Personal Information On Phone?

Aug 18, 2010

I got htc evo 4g by sprint i used it for 3 weeks and i wanted to go back to my bb. i decided to sell it . but when i wiped all the information still when i go to the phone identity i still can see my number and my email address . how to get rid of it.

View 4 Replies View Related

HTC Incredible :: Clear Information On Phone?

Aug 8, 2010

selling my incredibile. i thought i read a thread somewhere where it said you couldnt hard reset your phone cause it woudnt read towers or something? i dunno. but the point if i cant hard reset then how do i erase all the data off my phone?

View 3 Replies View Related

General :: Micromax A57 - Phone Stops At Boot After Porting ROM

Mar 1, 2013

I tried to port my Micromax A57 [Base] with Karrban A5 [used for port]. When I installing everything works great but, it stuck at boot. How do i check where is the fault or is there anything to do ?

View 2 Replies View Related







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