Android :: Activity Crashes When Remote Service Crashes

Jul 16, 2010

I'm trying to understand remote services at the moment and everything works fine, i can start the service and know how to communicate with it through the AIDL-interface. My problem is that the service seems to still run in the same process like the activity it was started from, because the activity crashes too, if there is an error thrown in the Service.

I set the service process to remote ( android:process=":remote" ) so what am i doing wrong? Or what do i have to do to unbind the service-process completely from the activity-process?

Android :: Activity crashes when remote service crashes


Android :: Activity Should Be Restarted After Activity Crashes?

Oct 14, 2009

we are developing an application where we are depending on a native, custom-written library which sometimes crashes. When the Activity crashes (it's the Activity's SurfaceView that crashes, either while resuming or pausing Activity) we would like to automatically restart the Activity that was just running, preferably without seeing the idle screen in between. What we find strange is that sometimes, our Activity is restarted by Android automatically after the crash, and sometimes not. How does Android decide this? Is it somehow dependant on exactly what the Activity was doing at the time of the crash and if that was considered important enough to restart? How can we force a restart to make sure the Activity doesn't quit after a crash? Running on device flashed with Android 1.5. The Activity is running as singleInstance. Doesn't seem to make much difference which mode it is though. Other methods we have tried are:

1) Since we can predict when crash is going to happen(but not stop it), use AlamrManager to start the Activity again via an Intent, 3 seconds later. Has the disadvantages that 1) need to be able to predict crash 2) if crash takes longer than 3 seconds (normally about 2s) it won't work 3) Idle screen is seen for about ~1 s, since some slack is needed.

2) Start a Service, then let the Service (which always seems to be restarted by Android after crashing) start the Activity in its onStart method. Has the disadvantage that Android doesn't restart the service until 5 seconds after the crash, so the idle screen is seen quite along time before Activity restarts. Is it possible to modify how long it takes before the Service is restarted by the Android system?

View 4 Replies View Related

Android :: Android Bluetooth Crashes Application When Remote Device Closes Socket

Feb 16, 2010

I have connected my Android application to a Windows desktop machine via Bluetooth. The application interacts with the machine. At the end of the interaction the application on the desktop closes the socket that was opened between the Android and the desktop application. Right when socket.close() is called on the Windows machine my Android app pops open a dialog saying that the application has stopped unexpectedly and then it quits. I have a breakpoint on the line in the ConnectedThread (like in the BluetoothChat sample) where I read the InputStream on the Android and that is not hit. I also have a breakpoint in the catch statement for the try surrounding the place where I read the InputStream. That one also does not get hit. So I have no idea how I can catch this error. Is this a bug?

View 2 Replies View Related

Android :: How To Clear Notification If Activity Crashes?

Oct 26, 2010

In my app, I'm creating a notification with the FLAG_ONGOING_EVENT flag set.I'm cancelling the notification in onDestroy, but if my app crashes before calling onDestroy, is there any way to have my notification go away?

View 2 Replies View Related

Android :: Call ListActivity From An Activity / App Crashes

Mar 23, 2010

My app crashes when i call a ListActivity from an Activity. I have searched on Internet and many people ask the same but i have not found any response. The only person i have found that solves the problems says that he solved changing manifest but he does not say nothing else. I i put the ListAvtivity as main activity in manifest app works ok buet if a set an Activity as main activity an then call ListActivity like:
Intent searchAct = new Intent(this, SearchResult.class); startActivity(searchAct);
then my app crashes. Des anybody know what happens?

View 7 Replies View Related

Sony Ericsson Xperia X10 :: Messaging Service Crashes

Oct 13, 2010

I'll be sending or reading a recieved text or reading through some old ones, and the messgaing service will crash, i'll then open handcent and the same thing will happen. it will come up with the message "the application has stopped unexpectedly.please try again" with options force close or wait, i'll select force close, re-open it and it comes up again.

View 6 Replies View Related

Android :: Activity Starts Remote Service

Oct 8, 2010

My initial activity is basically a splash screen while preforming initialization and login in to network server. To save memory I want to finish() the splash activity once it starts the main menu activity. I still want the remote service to operate. Testing shows it does. But am I going to get into trouble doing this? I know I can restart the remote from the main menu activity but I am trying to save overhead by not starting it twice. The remote service is required by the splash activity.

View 1 Replies View Related

Android :: Binding A Remote Service From An Activity

Nov 23, 2009

I am binding a remote service from an activity and unbind the same on the onPause of the Activity,when the activity again restarts i bind the service .It does bind with the remote service and i am also successful in getting the remote-service method getting executed after the restart.But when returning a message from the callback-RemoteCallbackList.the mCallbacks.beginBroadcast returns me 0 clients.Am i missing some thing here ?why am i am getting zero clients when I call mCallbacks.beginBroadcast.?

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

View 2 Replies View Related

Android :: Running Activity From Remote Service

Apr 29, 2010

Iam trying to run an activity from diffrent package from my remote service:

This is how i implement the service.java

CODE:....

Ive also added a line in the manifest of the service:


The service works fine, but i cant run the activity -> PushActivity which is in diffrent package of diffrent application, this is the error:

Activity not found Exception: No Activity found to handle Intent {act=com.pushservice.PushServiceActivity flq=0x10

View 2 Replies View Related

Android :: Remote Service Destroyed When Main Activity Closed / How To Fix?

Nov 19, 2010

I wrote an android program that: has a main activity for UI, and it starts a service. The service timely callbacks the UI activity to update views. It works fine except: if the activity is closed (with BACK) and start again, the service will also be started again (The service plays audio file, so there are two overlapped sounds). I use bindService with BIND_AUTO_CREATE flag to start and connect to service. According to the document, it should create service only if it doesn't exist, but obviously it starts another instance when opened second time. All I want is when the activity is closed, the service goes on running, and when the activity opens again, it can reconnect to the service. Is that possible? Or I just misunderstand the usage of service?

View 1 Replies View Related

Android :: Unbind Remote Service In OnDestroy Of Activity On Screen Orientation Change

Nov 24, 2010

In onCreate method of Activity, it binds to a remote service and makes use of AIDL intefaces. Is it required to unbind from the remote service when onDestroy is called on screen orientation change.?

If the activity un-bounded from the remote service in onDestroy and if no other contexts are bound to remote service, is remote service likely to get stopped losing the state that it maintains.?

View 1 Replies View Related

Android :: Default_all Crashes App

Feb 9, 2009

I've been using:

Notification.DEFAULT_SOUND

for quite some time with great success. When I replace that with:

Notification.DEFAULT_ALL

the program crashes when the notification is called.

View 4 Replies View Related

Android :: App Crashes Only On Device

Apr 22, 2010

So i have a app that runs fine on the emulator but crashes (force close message as soon as i open the app) on every device i have tested it on. How can i see whats going on? what could be going on?

View 4 Replies View Related

Android :: ListActivity In Tab Crashes

Oct 26, 2009

I'm trying to create an application that has 3 tabs. Under the middle tab should be a ListView. It starts up fine (on the left tab) but when I click the middle tab it crashes.

The other two tabs are static data specified in the main.xml file. But the middle tab, I try to create dynamically. Here's the code from the main onCreate function:

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

Instead I appear to get an exception:

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

ContactListActivity is defined this way:

public class ContactListActivity extends ListActivity { ...

I get the feeling that I'm supposed to create the Intent with something like Intent.ACTION_VIEW but this is where I get lost. If this is the problem, I could try stuff until it works, but I'd prefer to understand why.

Or is ContactListActivity supposed to override something ?

View 2 Replies View Related

Android :: Webview Crashes

Sep 20, 2009

I'm getting fairly regular crashes using WebView's in the underlying C code (sigsegv's). There isn't a _whole_ lot of rhyme or reason to it, but one thing that is somewhat suspicious is that I have more than one webview active (only one is one the screen at any one time, but if this has anything to do with my problem it may not matter since it appears that webkit widgets run asynchronously from the main UI thread).

Here's the stack dump. I've looked through the archives and it appears that there are other dumps, but it's really hard to tell from my vantagepoint whether they have anything to do with one another.

This is pretty easily reproducible (especially with one particular url of mine) so it should be relatively easy to track down.

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

View 3 Replies View Related

Android :: SurfaceView On G1 - Crashes

Apr 30, 2009

I am finally testing my application on a G1 and even though it works fine on the emulator, it crashes on the G1

It crashes when it does:

CODE:.........

And the view is defined like this:

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

View 3 Replies View Related

Android :: What Home Replacement Crashes The Least

Jan 15, 2010

I use to love Home ++ but lately its been crashing like crazy. I was gonna try GDE but I read some of the comments and that seems to have crashing issues also. Im tired of all the force closes. I have one widget and Im only using five home screens. Why is it closing so much

View 9 Replies View Related

Android :: Application Crashes Before It Starts

Nov 16, 2010

intentTest.java:
package intentTest.xyz.com;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button
public class intentTest extends Activity {
Button b;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
b = (Button) findViewById(R.id.b);
b.setOnClickListener( new View.OnClickListener() {
public void onClick(View view) {
Intent intent = new Intent(intentTest.this,seond.class );
startActivity(intent);
}});
}}
main.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="First screen"
/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="click"
android:name="@+id/b"
/>
</LinearLayout>
seond.java:
package intentTest.xyz.com;
import android.app.Activity;
import android.os.Bundle;
public class seond extends Activity{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.second);
} }
second.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="second screen"
/>

manifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="intentTest.xyz.com"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".intentTest"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".seond"></activity>
</application>
</manifest>

I get the following error code:
11-16 01:26:07.156: ERROR/AndroidRuntime(779): Uncaught handler: thread main exiting due to uncaught exception
11-16 01:26:07.166: ERROR/AndroidRuntime(779): java.lang.RuntimeException: Unable to start activity ComponentInfo{intentTest.xyz.com/intentTest.xyz.com.intentTest}: java.lang.NullPointerException
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2401)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2417)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at android.app.ActivityThread.access$2100(ActivityThread.java:116)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1794)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at android.os.Handler.dispatchMessage(Handler.java:99)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at android.os.Looper.loop(Looper.java:123)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at android.app.ActivityThread.main(ActivityThread.java:4203)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at java.lang.reflect.Method.invokeNative(Native Method)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at java.lang.reflect.Method.invoke(Method.java:521)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:549)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at dalvik.system.NativeStart.main(Native Method)
11-16 01:26:07.166: ERROR/AndroidRuntime(779): Caused by: java.lang.NullPointerException
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at intentTest.xyz.com.intentTest.onCreate(intentTest.java:18)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1123)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2364)
11-16 01:26:07.166: ERROR/AndroidRuntime(779):
... 11 more

View 5 Replies View Related

HTC Incredible :: Android OS Crashes And Reboots

Jun 3, 2010

Anyone else having problems with their Incredible crashing and rebooting? Happened to me first a week ago, I thought it was a fluke while sending a txt message it randomly rebooted. Today it happened again while listening to the mp3 player with the screen locked and in my pocket.

View 1 Replies View Related

Android :: Got EditText Field From XML / App Crashes

Mar 23, 2010

I have an activity in my app, when i call the line
EditText username = (EditText)findViewById(R.id.usernameText); the app crashes, why is this?

View 3 Replies View Related

Android :: App Crashes While Testing Through Instrumentation

Sep 27, 2010

I have separated java code from Android code and have two projects. Android dependent on Java project. Now i want to get the memory trace of the Java project on Android. For that I have created Androd Junit Project implementing Android Instrumentation, and a dummy android project dependent on my actual java project.(as I only want to get memory trace of java project on android).Problem is when I execute Android Junit project, and give a reference of dummy project removing java project dependency, all tests(dummy) run fine.But when I run junit project, with dummy android proj keeping dependency on java project, my application crashes.I get an error message like : "Process crash" not getting any error message in logcat. No clue whats wrong with code.Any help is highly needed.

View 1 Replies View Related

Android :: Crashes With No Usefull Stacktrace?

Aug 12, 2009

My app has been pretty stable so forth, and suddenly I keep getting these crashes that kill the entire process. What do they mean and how should I deal with them? Since I dont get any usefull stacktrace I really dont know how to debug this. Below is the dump from my error log.

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

View 7 Replies View Related

Android :: Use Map In My Application - Crashes With Error

Dec 7, 2009

I want to use a map in my application but I can't get it to run.

It always crashes with the following error:

CODE:.....

My XML file:

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

My layout:

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

In my code I add the map like this:

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

View 5 Replies View Related

Android :: AlertDialog Crashes Application / Why Is So?

Jun 17, 2010

Can someone explain to me why this AlertDialog crashes? code...

View 1 Replies View Related

Android :: Toast Crashes Application / What To Do?

Nov 19, 2010

In my application I've implemented such that pressing the hardware volume keys displays a Toast with the current volume. Things go well most of the times. However long presses of the volume keys do succeed in crashing my application. The Log generated on crash is the following...

The approach I follow:
I have a toast Object and for every key press event detected I inflate a view ,set the view elements within, set it to the toast and then show the toast.

Any idea what is going wrong ? code...

View 1 Replies View Related

Android :: Application Crashes When Orientation Changes - Fix It?

May 26, 2010

My app crashes when the device orientation changes..Tried debugging on real device, but I have no clue where the crash exactly happens.. I would appreciate if someone could throw some light on this:

Below is the error log...

View 2 Replies View Related

Android :: Non Java - Framework - Crashes?

Nov 25, 2009

I'm experiencing crashes that don't produce a "force close" message. Instead, the app exits immediately without an error message. In the log, it seems the problem is inside the framework's libraries but I don't really know how to interpret it.

Here it is:

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

View 3 Replies View Related

Android :: Simple App Crashes On OnRestart() / Fix It?

Oct 3, 2010

I've been writing a simple drawing App as homework for university. Drawing works fine, but the canvas should also be cleared when the App is coming back from the background. When switching back i get the following code...

View 2 Replies View Related

Android :: 'Home' App Crashes - What To Do / Can I Reboot Only

Mar 11, 2009

I should post this as a follow-up to my previous thread.

But I think this problem (may be) somewhat big so I create a new thread:

1. If a user install an alternative to 'Home'. (I'll call it 2nd Home)

2. He set this 2nd Home to launch by default for 'Home' action.

3. Whenever this 2nd Home crashes, their only choice is to reboot the system... ?

Because, after setting 2nd Home as default, the 'chooser' will not come out any more even if you press the 'Home' button.

In some case if this 2nd Home crashes in its initialization state, user can go no where, can't even go to Settings -> Manage App -> Clear Defaults

Am I missing something?

View 3 Replies View Related

Android :: Internet Permission Crashes My App / Fix This?

Mar 14, 2009

When i add Internet permissions to my manifest file my application refuses to even start and i get this in my console code...

fix this? code....

View 2 Replies View Related







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