HTC Legend :: Cannot Personalize Force Closes

Apr 17, 2010

I just got my Legend today. Had many problems getting it to work on Tmobile US. Finally got it working, but now I can not personalize it. Everytime I go to Menu-Settings-Personalize- either Scenes, Home wallpaper or Lock screen Wallpaper I get a Force Close. My Sotware information is:

Firmware version
2.1

Baseband version
47.23.35.03U_7.05.35.03

Kernel version
2.6.29-00980ffd

Build number
1.11.997.0 CL128574

Software number
Unknown

Browser version
Webkt 3.1

HTC Legend :: Cannot Personalize Force Closes


HTC Legend :: Can't Set Message Notification Tones To One Person / How To Personalize

Jul 21, 2010

I purchased the legend yesterday and I'm not sure whether or not I can set a message notification tone to one person. I've figured out how to install different message notification tones onto the phone, but I cannot figure out how to set a tone to one person.

View 2 Replies View Related

HTC Legend :: Internet Opens Then Closes Again

Nov 2, 2010

not sure if this is general Android, HTC or HTC Legend related (mods please move as you see fit).Sometimes when I open the stock internet browser I get a white screen for a few seconds and then closes again (no force close message).This also (sometimes) happens if I launch an internet shortcut.Does anyone have any idea what could be causing this?

View 2 Replies View Related

HTC Incredible :: Getting More Force Closes

Jun 2, 2010

I have a replacement incredible, but over the last week I'm getting more and more force closes than I did with the first one.

View 3 Replies View Related

App Force Closes Before Even Opening?

Oct 24, 2011

I'm working on this new app, and it's force closing before it even opens, why it's force closing? (I've tried this app on my samsung transform and my motorola xoom yesterday, both worked, and them i added the image button inplace of the regular button, and now it won't work. here are my files;

Main.xml

Code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<EditText
android:id="@+id/editText1"

[code]...

View 4 Replies View Related

Android :: Force Closes In App After Donut OTA

Oct 8, 2009

I'm getting reports from users about force closes in my app after the donut OTA. One of them was kind enough to send me a logcat which included these two gems (right after he installed it from market):

10-02 15:56:35.708 D/PackageManager(71): New package installed in / data/app/com.billnapier.android.livebookmarks.apk 10-02 15:56:35.708 W/PackageManager( 71): Unknown permission com.android.browser.permission.READ_HISTORY_BOOKMARKS in package com.billnapier.android.livebookmarks 10-02 15:56:35.708 W/PackageManager( 71): Unknown permission android.permission.READ_HISTORY_BOOKMARKS in package com.billnapier.android.livebookmarks

The second one makes sense, since that name has gone away. But I can't figure out why the first one would show up, since that permission should exist on the phone. anybody got any clues? I can't reproduce this on my phone, so it's kinda hard to debug.

View 2 Replies View Related

Android :: How To Track Down Force Closes?

Nov 24, 2009

Some of my users are reporting force closes. Does anyone have some ideas about how to track these issues down when I can't reproduce them in the Emulator or on my Hero? This is my app btw if anyone wants to logcat it for me:
http://aliceonandroid.wordpress.com/

View 5 Replies View Related

Sprint HTC Hero :: Everything Force Closes

Apr 30, 2010

I've had this phone for about a month now. No problems whatsoever, until the other day. My phone was turned off. Then, it "magically" turn on ans started ringing. I turned my phone back off for a while. Later, I turned it back on and the second the home screen pops up, like 10 force close screens pop up. I can't text, internet, nothing. No settings either. I click the phone tab at the bottom and another force screen pops up, same as everything else. It also shows I have no signal at all, when normally I have almost full bars. A few days prior to this, my phone would phase in and out of service for no reason.

View 7 Replies View Related

HTC Incredible :: Launcher Pro Force Closes

Jun 11, 2010

I figured I might try starting something up for those who are having problems with Launcher Pro. It's a great home replacement and has far better functionality than Sense does IMO. The only issue is that it seems like some people are getting a lot of FC's.

I had a good week long run without any FC's, and then after an upgrade it seems like they're back.

If anyone has found any malicious widgets or apps that don't play nicely with LP, can you please post them up here?

View 2 Replies View Related

Sprint HTC Hero :: Updated LP But Still Getting Force Closes (CM6)

Sep 26, 2010

Anyone noticing a ridiculous amount of force closes on LP+ while running CM6? I originally was on the newest "stable" build, go ta lot of FCs, so updated to the 9/25, still getting the FC's. Then went back to the stable one, updated LP in the market, and still getting the FC's.

View 6 Replies View Related

Sprint HTC Hero :: Fresh 1.1 And Force Closes

Jan 31, 2010

A couple days ago I flashed the 2.1 icon pack, used MetaMorph to apply a theme and ended up getting force closures. I did a wipe and restored my last nandroid -- no luck. Then I restored with the RUU and put Fresh 1.1 on my phone. I want to switch to MoDaCo 2.2 but when I do I'm getting those force closes again.

View 1 Replies View Related

Android :: Application CFConverter Force Closes

Sep 12, 2010

I am new to android development and I have made this using help from a website. The XML files dont have any errors,Here is my Main java code: package com.CFConverter;

import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.os.Bundle; import android.os.Message; import android.view.View; import android.view.View.OnClickListener; import android.widget.EditText; import android.widget.RadioButton; import android.widget.Toast;

public class CFConverter extends Activity {
/** Called when the activity is first created. */ private EditText text;
@Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
text = (EditText) findViewById(R.id.EditText01);
} //This Handler is called when we click the button01.
public void myClickHandler(View view) //passing the current view {
if(view.getId()== R.id.Button01) {
RadioButton celsiusButton = (RadioButton)findViewById(R.id.RadioButton01);
RadioButton farhrenheitButton = (RadioButton)findViewById(R.id.RadioButton02);
if(text.getText().length()==0) { Toast.makeText(this, "Please Enter a Valid Number", Toast.LENGTH_LONG);
return; } float inputValue = Float.parseFloat(text.getText().toString());
if(celsiusButton.isChecked()) { text.setText(String.valueOf(convertCToF(inputValue)));
// calling function to convert } else {
text.setText(String.valueOf(convertFToC(inputValue)));
} return; } } private float convertCToF(float fahrenheit) {
return ((fahrenheit - 32) * 5 / 9);
} private float convertFToC(float celsius) {
return ((celsius * 9) / 5) + 32;
} }

View 3 Replies View Related

Android :: Application Force Closes On 1.6 - SDK / Image Available Yet?

Sep 11, 2009

We have had a couple users on the myTouch phone have issues in our application. It apparently is force closing on them. I am not sure of why it is, and the 1.6 SDK is not out yet. Has 1.6 been released into the wild? If so, do you know where I can download the image for my G1 dev phone to test w/?

View 7 Replies View Related

Motorola Droid :: Market Always Force Closes

Jun 22, 2010

For the past 2 months, whenever I open the market on my Droid, it always force closes, "(process com.android.vending)". What do I do?

View 1 Replies View Related

Motorola Droid :: Force Closes On Several Applications

Jun 11, 2010

I got the droid about a month or two ago and to date I love it. The ability to customize it and the applications available are amazing. My issue though is the force closures on several applications, the ones I've had issues with are handcent, homerun battle3d, visual voicemail and helix launcher. I may have left one or two out but those are the ones I could remember off the top of my head. I emailed the developer of handcent and they were very fast in responding to my email and we spoke over google talk today at length.

We were unable to figure out the problem for sure but after I did a factory reset, handcent now works again because I love this sms app! I'm not sure about homerun battle and helix cause I no longer use either, but the factory reset fixed visual voicemail as well. After doing the f.r and handcent working again, spoke to the developer again and was asked if I had any other sms apps on my phone. Now I did have chompsms on there at one point and I was advised that this is a possible reason for the f.c issues with handcent. If this is true I would like to ask you guys who are more tech savvy than I if I'm installing certain programs on my phone that are causing the force closes.

View 3 Replies View Related

HTC EVO 4G :: Friend Stream Force Closes After Update

Jul 2, 2010

My just force closes all the time starting this morning. I updated my phone the first day of the last software release with no issues. Just wanted to see if any one else has a problem as ny return time us coming up. Or if any one know how to reinstall that default app.

View 4 Replies View Related

HTC Hero :: Superuser Permission Force Closes On MCR 3.2

Mar 8, 2010

And I cant find anything in the search that might help. I thought there was some busybox update and now my stoned a$$ cant find it.

View 2 Replies View Related

Android :: Trying To Open An Email App Force Closes

Jan 20, 2010

I have the Motorola droid. I can see my inbox but when I try and open an email the app force closes. Anyone else had this problem?

View 1 Replies View Related

Samsung I7500 :: Memory And Force Closes

Mar 4, 2010

I am running Galaxo 1.6.1. Seems like my phone runs very slow. key presses and app responsiveness is pretty bad especially when i am going between apps like google maps and pandora. at this point it starts to turn into one force close after another)

I'm not an expert on android, but i installed Estrongs task manager and the max memory i get when i kill all apps is about 20mb. i'm often running at about 10-14 at normal use. (i'm sure its much less when the force closes start)

Does anyone have any suggestions for freeing up memory? I saw some tweeks for the previous galaxo roms but those don't seem to apply to 1.6

View 5 Replies View Related

HTC Droid Eris :: Market Force Closes

Sep 28, 2010

Every time I try to start the Market I get the following error. The application com.android.vending(process com.android.vending) has stopped unexpectedly. Please try again.

I've read lots and tried lots of fixes but nothing works. Cannot download or update any applications as a result.

View 10 Replies View Related

HTC Incredible :: Few Small Force Closes Snowballed

Oct 11, 2010

This is a kind of long process of what I went through to kind of get my phone back up and running after a few small force closes snowballed. My phone is up and running now but still not at 100%, any input would be appreciated.

My phone's previous software information was the following. Virtuous Rom 2.6 with King's BFS #5 kernel not overclocked and the Incredible Revolution Theme.

About a week ago I started noticing some random force closes with some of the HTC services (.com.htc.downloader, or something similar). It would force close but never caused me any problems that I would notice. The only new app I had added in about a month was "Angry Birds Lite"

Then yesterday my phone started acting sluggish all of a sudden so I decided a reboot was in order. I used "quick boot" and selected reboot and my phone started to reboot, and then started to boot loop (it would get all the way to the droid eye animation and sit for a minute then try to boot again). I pulled the battery and attempted to let it boot again and it was still stuck in the boot loop. I then booted into recovery and attempted to restore one of my backups with no luck, now it would just get stuck at the first white HTC incredible screen and sit for half an hour if I let it. Next I did a full data/dalvik cache wipe and tried to restore a couple different nandroids with no luck.

My next step was just to re-download Virtuous and start fresh. I was able to get Virtuous to boot but after going through the set up .com.htc.launcher would go into a force close loop with no way out of it, after another few attempts at loading Virtuous and other Sense based roms and having them all fail with the same .com.htc.launcher force close loop, I tried to go to a senseless Rom and was able to get Sky Raider to boot with no issues. But I wanted my phone back the way I had it.

My last resort was to unroot back to stock(S-off still). I downloaded the stock PB31IMG.zip and flashed it to my phone with complete success. Next I needed to root my phone again. I used the UnrEVOked 3.2 and got my phone rooted, but I couldn't boot into recovery. After much trial and error I was able to get recovery to load by flashing Adrynalyne's version of clockwork mod. I then flashed Virtuous 3.1 with the stock kernel onto my phone, and then I was able to flash back to the standard Clockwork mod recovery.

My phone is up and running now fine when it's on. But my issue now is that I can't do anything through rom manager or manually through clockwork mod to my phone without my phone getting stuck in a boot loop or getting stuck at the first HTC incredible screen after booting out of recovery. Even after just making a nandroid backup of my phone (without loading any apps) it will get stuck at the HTC screen. 95% of the time, clearing the dalvik cache will let my phone boot, but if I had loaded any apps they are all erased and just a placeholder is left on the home-screens. Sometimes I need to do a data

I'm using a newly formatted FAT32 sd card since flashing back to stock and rooting again

View 14 Replies View Related

HTC Incredible :: Battery Change - Everything Force Closes

Oct 12, 2010

I'm running Virtuous 3.0.1, and I have both the stock and extended battery for the phone. My stock battery just ran out of juice, and when I put the extended battery in and started up the phone, I get a series of force closes. Additionally, some apps have magically disappeared - e.g. Handcent. In addition, it has seemingly reverted back to some old settings - e.g. wefi thinks it's just been installed. Weatherbug has a notification that I had previously switched off.

Half my widgets and apps suddenly don't work. And when I try to click on them, I just get a FC error. How can this be caused by switching batteries and how do I ameliorate the issue?

View 1 Replies View Related

Android :: Service With MediaPlayer Force Closes

Aug 1, 2010

I have a Service with a MediaPlayer which streams audio from the Internet but when I press the Home button and it goes back to the home screen it Force Closes. It's strange though because it works perfectly in the emulator and sometimes it doesn't Force Close on my phone (G1), when I've just turned it on.

This is my code:

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

Log:

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

View 1 Replies View Related

Android :: Force Closes When The Voice Prompt?

Jul 5, 2010

Would anyone have an idea as to why an app would work on almost every phone that has 2.1 but not the Desire?

One of my apps uses voice input and the Desire is the only phone that force closes when the voice prompt comes up.

The worst part is that I don't know how to test this, I don't have one or know anyone who does.

I finally found out that HTC disabled voice in the Desire and you have to do a work around to install it.

So if you are relying on voice input make sure you use the code in the google example to catch the error:

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

View 1 Replies View Related

Android :: TextView.setText Force Closes

Sep 13, 2010

I'm attempting Google University Android lab1 you are asked to change a TextView's text content according to the value passed via the Intent from another activity.

I tried out the rest of my code but...why does my app force close when I add the "tv.settext(...) line"?

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

View 1 Replies View Related

Android :: Starting App When GPS Is Enabled Force Closes

Nov 4, 2010

My app works when GPS is disabled, but FC's when starting while GPS is enabled. On a cold start it offers the option to turn on the GPS. After doing that, pressing the back arrow button it returns to the app activity (although the GPS icon is not visible in the status bar, on a side note, how do I get it to display here?).

I exit the application by pressing the back button or using the menu option whilst GPS is still on.
Now, when I try to start the app, it FC's. The blinking GPS icon appears behind the FC message and disappears when I acknowledge the FC.

Here is the code:

CODE:........

And this is the logcat from eclipse:


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

View 1 Replies View Related

General :: Phone Restarts On All App Force Closes?

Sep 4, 2013

I'm having a weird issue where after I successfully rooted my Samsung Galaxy S3 (following a guide from androidcentral) every time my phone encounters an application force close, the phone will freeze up and eventually restart. Before rooting my phone, whenever an application would force close all I would get was a notification telling me <application name> had closed unexpectedly, as it should in Android. Now I'm not seeing that, phone just goes to black and then restarts. This wouldn't be a huge deal, but since I'm using it as a development platform, having your phone restart every time your application crashes takes a lot of time.

What's really weird is that Logcat will continue to scroll (in Eclipse) even after the phone is frozen to input (so its not a system wide lock up).

View 3 Replies View Related

Samsung Moment :: Getting An Excessive Amount Of Force Closes?

Nov 3, 2009

Anyone else getting an excessive amount of force closes? I must have had like at least 5 today.

View 14 Replies View Related

Android :: SugarSync Force Closes After Donut 1.6 Update

Oct 15, 2009

I spent a month stocking my SugarSync folder full of files and entertainment for my big vacation. On day one of my trip the Donut 1.6 update came through and now SugarSync force closes constantly, haven't been able to use it since. I've been emailing the developers and they refuse to see a connection (despite several comments in the Market of other users blaming 1.6). Is there a chance it isn't 1.6 and how can I fix this? I've uninstalled and reinstalled several times with no improvement. It was an awesome app when it worked, I'll be damn sorry to have to delete it.

View 4 Replies View Related

Motorola Droid :: Quadrant Benchmark Sometimes Force Closes

Jul 27, 2010

I've been running BB V0.4 with chevy's no1 ULV 1.2Ghz kernel (mostly as an experiment). All my normal applications run flawlessly and the battery life has been good. No issues streaming video, running Pandora, playing 3D games, running SetCPU stress test. However, about every 4th time I run Quadrant, it force closes on the program startup.

This looks like a warning sign that I'm running right on the edge and will eventually have trouble with my normal applications as well. I haven't run Quadrant before using this new kernel. Is this a program that will sometimes force close even nothing is wrong? Also it only force closes if I haven't run it in a while. Once it is in memory I can rerun it many times with no force closes.

View 4 Replies View Related







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