RuntimeException is the superclass of those exceptions that can be thrown during the normal operation of the Virtual Machine.

learn more… | top users | synonyms

67
votes
7answers
26k views

Java: checked vs unchecked exception explanation

I have read multiple posts on StackOverFlow about checked vs unchecked exceptions. I'm honestly still not quite sure how to use them properly. Joshua Bloch in "Effective Java" said that Use ...
34
votes
4answers
28k views

Calling startActivity() from outside of an Activity?

I'm using an AlarmManager to trigger an intent that broadcasts a signal. The following is my code: AlarmManager mgr = (AlarmManager) getSystemService(Context.ALARM_SERVICE); Intent i = new ...
3
votes
2answers
3k views

Why is my activity crashing when hitting the home button?

At this point I'm quite frustrated. I've been researching this for a few days and cannot even isolate anything beyond a cursor problem. I am extending ListActivity and using ...
0
votes
2answers
490 views

readBooleanArray throws RuntimeException(“bad array lengths”)

I knew that parcelable are hide something secret, but didn't thought that i need to know them, unitl now. Here is the code i had before: ... parcel.writeBooleanArray(new boolean[]{booleanValue1, ...
1
vote
1answer
109 views

GdxRuntimeException on Android: couldn't load shared library 'gdx' for target

I've developed a Libgdx application and tested it on my Samsung Galaxy S3(4.1.2) where it is working great. I tried to test it on a Galaxy Grand(4.1.2) but it failed. In the logcat, I found the ...
0
votes
2answers
1k views

RuntimeException: Can't create handler inside thread that has not called Looper.prepare()

I've got a code with an ASyncTask and the problem is that when I execute it several times it crashes with this exception: RuntimeException: Only one Looper may be created per thread But then I've ...
0
votes
2answers
4k views

Proper use of RuntimeException? [duplicate]

Possible Duplicate: In Java, when should I create a checked exception, and when should it be a runtime exception? When should I derive an exception from RuntimeException instead of ...
4
votes
5answers
6k views

Android RuntimeException onCreateDialog did not create a dialog for id

I've an application that you can show and close several Dialogs with: showDialog(...) removeDialog(...) I play a little bit with the application and when there is no any Dialog on the screen, I ...
7
votes
1answer
5k views

Set a menu item as checked from code

I have an Android application with the following menu item in one of the Activities (which concerns handling a list of names and mac numbers): <item android:id="@+id/menu_sort_tagg" ...
3
votes
1answer
18k views

Android Tab Action Bar

I am trying out on the android action bar for 3.0, where i refer to http://www.youtube.com/watch?v=gMu8XhxUBl8 the code in the TabsActivity are as follow: package com.test.actionbar; import ...
2
votes
4answers
97 views

Design issue: to what extent should I rely on exceptions for the flow of control?

I am working on a java web application and I have a few questions regarding design. Basically in its current version, it relies heavily on catching exceptions to determine the flow of control. For ...
0
votes
1answer
1k views

class extends ListActivity “whose id attribute is 'android.R.id.list'”

I'm trying to extend my main Activity to "ListActivity" (previously extends to: Activity) to use onListItemClick, but the logcat, send me "Your content must-have a ListView whose id attribute is ...
5
votes
2answers
2k views

Custom notification: java.lang.RuntimeException: bad array lengths

I'm trying to use custom notifications in my Android application using Google's sample from here (section Creating a Custom Notification Layout). Since I'm using this exact code I got a ...
4
votes
2answers
2k views

java.lang.RuntimeException Theme.Sherlock

I have put an update on google play and see this error : java.lang.RuntimeException: Unable to start activity ComponentInfo{com.jim2/com.jim2.SettingWidgetActivity}: ...
3
votes
4answers
2k views

Android: Activity not registered in the manifest

<uses-sdk android:minSdkVersion="7" /> <application android:description="@string/app_description" android:icon="@drawable/icon" android:label="@string/app_name" ...
2
votes
4answers
6k views

Android unable to start activity, error inflating class?

I'm new to android. I have some java knowledge, and I'm using Eclipse. At the moment I'm trying to display a map within a tab, and am looking at tutorials/code to help me. :) I've seen a few ...
1
vote
1answer
641 views

Android : Getting RuntimeException on AsyncTask

In the code I try to read from a web service with an http client. Then I want to write the Responce Phrase of the http responce to a text view. The UI is accessed through onPostExecute() so I don't ...
1
vote
2answers
706 views

Helper Class - Error Unable to start activity ComponentInfo:

Error Unable to start activity ComponentInfo: java.lang.IllegalStateException: System services not available to Activities before onCreate() I´m experimenting with seperating the code and the use of ...
0
votes
1answer
97 views

java.lang.ClassNotFoundException on working app?

When i start app in Android 4.1.2 there are no any exception but when i start app in Android 2.3.5 i get this exception: java.lang.RuntimeException: Unable to instantiate activity ...
0
votes
2answers
143 views

Transfer data between EditText and Text View

I'm trying to make an activity that take the value of the EditText and put it in the TextView in another activity. This is the code for the first activity which contains a Textview and option menu to ...
0
votes
3answers
2k views

PowerShell - If Then: cannot call a method on a null-valued expression

When I run the program this function is in I get a cryptic error that doesn't make sense to me. I wasn't aware I was running a method on a null-valued expression. It occures to me that this is either ...
0
votes
1answer
913 views

How to display custom dialog in Cocos2dxActivity

How can I display a custom android dialog(with custom layout) in Cocos2dxActivity ? I tried calling a method through JNI in which I created a Dialog, set its layout and displayed it. public void ...
0
votes
1answer
543 views

When using a WSDL-first approach to generate java stubs, is there a way to make exceptions extend RuntimeException instead of Exception?

Is there a way to force JAXB to generate exceptions which extend java.lang.RuntimeException instead of Exceptions when using a WSDL-first approach? I'm using a WSDL-first approach for my Java web ...
0
votes
2answers
467 views

RuntimeException with Android OptionsMenu

My application was running fine until i added the following code to add an options Menu to my main Activity: @Override public boolean onCreateOptionsMenu(Menu menu) { MenuInflater inflater = ...