RuntimeException is the superclass of those exceptions that can be thrown during the normal operation of the Virtual Machine.
63
votes
7answers
24k 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 ...
33
votes
4answers
26k 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 ...
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"
...
6
votes
4answers
2k views
Java RuntimeException equivalent in C#?
Does C# have the equivalent of Java's java.lang.RuntimeException?
(I.E. an exception that can be thrown without the necessity of being caught, or the program crashing when the exception is thrown.) ...
6
votes
2answers
197 views
Android App crashes on Release Build with the use of Proguard and Dagger
I'm new to the use of Proguard and Dagger for Android apps, so I would really appreciate if someone could give me a few pointers.
Proguard and Dagger have been implemented into the application. When ...
5
votes
1answer
449 views
Guava EventBus: don't catch RuntimeException
I use guava's EventBus, unfortunately it catches and logs the InvocationTargetException that occurs when an event-handler throws a RuntimeException. Can i disable this behaviour?
5
votes
3answers
1k views
BluetoothAdapter.getDefault() throwing RuntimeException while not in Activity
When I'm trying to get default bluetooth adapter while i'm NOT in Activity, but in TimerTask (created inside Service) by using:
BluetoothAdapter.getDefaultAdapter();
I get the following exception:
...
4
votes
2answers
168 views
int i=99 is working however int i = 099 not working
In Java, I noticed that when I write
int i = 99;
it works fine. However when I say
int i = 099;
I get an exception:
java.lang.RuntimeException: Uncompilable source code - Erroneous tree type: ...
4
votes
3answers
306 views
Is it possible to catch all exceptions except runtime exceptions?
I have a statement that throws a lot of checked exceptions. I can add all catch blocks for all of them like this:
try {
methodThrowingALotOfDifferentExceptions();
} catch(IOException ex) {
...
4
votes
5answers
5k 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 ...
4
votes
4answers
2k views
Uncaught RuntimeException and finally clause: which comes first?
A RuntimeException is thrown in try block without being caught, while the finally clause invokes System.exit().
public static void main(String[] args) {
try {
...
4
votes
2answers
4k views
java.lang.RuntimeException: Unable to instantiate service .GCMIntentService
I'm trying to learn how to set a client receiver using the google cloud messaging system and i'm following this Google's tutorial: http://developer.android.com/guide/google/gcm/gs.html#android-app
I ...
4
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
1answer
135 views
Method Over riding and Inheritance and Exceptions
Can a method in a subclass override a method in the parent class and throw a run time exception when the method in the parent class throws no exception? Something like this:
class X { public void ...
4
votes
2answers
5k views
Show/hide item in Action Bar Android (3.0+)
I'm using the built in action bar. I want to display in the action bar an animated loader while fetching data, and display a "refresh" icon when not. The simple way I found is to use 2 menu items and ...
4
votes
4answers
966 views
How to properly debug Java (Android) using Eclipse?
I am having problems with debugging my code. One of my AsyncTasks throws a RuntimeException, but I don't know which line in my code is responsible for this. Since I am new to Eclipse and Java in ...
3
votes
6answers
10k views
Java - How to throw RuntimeException
I'm trying to throw an exception in my code like this:
throw RuntimeException(msg);
But when I build in NetBeans I get this error:
C:\....java:50: cannot find symbol
symbol : method ...
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 ...
3
votes
2answers
90 views
Java - How to deal with checked exceptions *as a group*?
EDIT: This question relates to Java 1.6 (and below). Apologies for not making this clear in the original post.
The hierarchy here shows Java Exception is divided into two types: RuntimeException and ...
3
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"
...
3
votes
1answer
17k 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 ...
3
votes
4answers
281 views
Catch Unresolved Compilation Errors in Java
I'm currently a Teacher's Assistant for a class that uses Java. I'm trying to write a snippet of code that will test to make sure that student's methods are correct, but often times the student won't ...
3
votes
2answers
112 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 ...
3
votes
2answers
165 views
Caching bitmaps without External SD Card
The images will not cache on internal storage and crashes on devices without an External SD Card. I have tried what I know and nothing worked. Here is the ImageCache.java
package ...
3
votes
1answer
1k views
What is causing this in android webView?
I am getting the following exception and not able to debug it.
Please help.
Code:
public class HybridActivity extends Activity {
/** Called when the activity is first created. */
...
3
votes
1answer
277 views
Why am I getting a nullPointerException when Clojure code calls a JPanel function?
I am having trouble determining why my code gets a nullPointer exception. I'm trying to write a swing application using a combination of Java and Clojure. I have a Clojure function that calls a ...
3
votes
2answers
252 views
Java uncaughtExceptionHandler not working
I have a global exception handler routine which wraps some exceptions in runtime exceptions
Like this
public class ExceptionHandler
{
public static void handle(){
throw new RuntimeException(e);
...
3
votes
0answers
301 views
takePicture RuntimeException Android
I've developed an app which has got a service taking snapshots in the background. Whilst this app runs okay in all the devices I've tried so far (not Motorola ones), I found that running it on a ...
2
votes
2answers
2k views
Please explain RuntimeException in Java and where it should be used
I am following this great discussion at SO, titled: The case against checked exceptions , but I am unable to follow where exactly RuntimeException should be used and how it is different from normal ...
2
votes
4answers
96 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 ...
2
votes
2answers
274 views
call method with checked exception
As I know if method throws an exception Java compiler forces the caller of that method to catch that exception.
I see that parseInt throws NumberFormatException :
public static int parseInt(String ...
2
votes
2answers
1k views
Why this Error Occured ?? java.lang.RuntimeException: ImageLoader must be init with configuration before using
I have downloaded one ImageDownloader code from gitHub(from Here)
Now when i am trying to download the image from my webservice i am getting this Runtime Exception "ImageLoader must be init with ...
2
votes
1answer
260 views
In Java, why dont I need to import RuntimeException to use it?
If I try to use IOException without the fully qualified name and without importing, I get a compilation error. But it doesn't happen when I do the same with, say, RuntimeException or Exception.
Why is ...
2
votes
4answers
47 views
Why in Java incompatibility of types to casting is checked at runtime and type mismatch to converting at compile time?
Let's say there are 2 classes. And Child extends Parent.
public class Parent {}
and
public class Child extends Parent {}
I know that the following code is incorrect:
Child obj = new Parent(); ...
2
votes
2answers
857 views
Unmarshalling errors in Android app with custom parcelable classes
For my Android application, I get several unmarshalling errors although I think I've done everything that is needed to properly save and load objects via Parcelables. Can you tell me what's wrong with ...
2
votes
1answer
1k views
Android Fatal error “Unable to instantiate Activity”
I am getting a fatal error in an application that I have been working on. The log file and code is as follows. From what I can tell it is not even getting to the main activity.
Log File:
Shutting ...
2
votes
1answer
192 views
How do i catch unchecked exceptions in SWT's event-loop
i guess the question is pretty clear, i want to catch (and log) RuntimeException that occur in SWT's event-loop. Right now i'm wrapping all my calls to code in a Runnable which logs any ...
2
votes
2answers
113 views
How Runtime Exceptions are thrown
I started reading about CLR and was wondering how the runtime exceptions are thrown.
When there is any syntax error and if we try to build the program, the compiler detects it and throws the error. ...
2
votes
2answers
403 views
How do I find this RuntimeException in Android (stack trace)?
I have this strack trace from the Developer Console on Google Play so I have no way to reproduce this exception cause I don't know what triggers it. The user also didn't leave any message, so...
...
2
votes
4answers
4k views
Eclipse Helios - “java.lang.RuntimeException: Widget disposed too early!”
Hi
I am running Eclipse Helios on Win XP.
When I start it today, I get a message telling that Eclipse can not be started.
Here is the content of the log file that was generated:
!SESSION 2011-03-24 ...
2
votes
1answer
106 views
fatal exception : asynctask #1 error
There's FATAL EXCEPTION AsyncTask #1 when i run the apps. Can anyone tell me what's the problem i've got on the code ?
Here is the code
new ...
2
votes
1answer
193 views
Android Preference for API lower and higher than 3.0
Im having a FC issue on my preference setup. I looked on the web for some preference examples to work for both API lower and higher than 3.0. So I got 2 xml preference files just like the tutorial. ...
2
votes
1answer
74 views
Java Data Objects Specification using only Runtime Exceptions?
We are evaluating JDO for using as the Data Management Layer in our application . The requirement is to have a well abstracted Data management with zero dependencies with any of the Data stores.
We ...
2
votes
1answer
482 views
NullPointerExeption with and intent Android
I have a switch class to determine phone or tablet and I get a null pointer exception when the intent is created. I am just wondering what is causing this as both activities exist and the switch is ...
2
votes
0answers
76 views
NullPointerException org.gradle.wrapper.BootstrapMainStarter.findLauncherJar(BootstrapMainStarter.java:37)
Got the following stacktrace when launching gradle 1.1, anyone know how to resolve them:
Exception in thread "main" java.lang.NullPointerException
at ...
2
votes
0answers
75 views
Runtime Exception when using OData for Android
I am trying to build up a Android application by using OData. I only want to build up a connection to a Web Server via using OData. I am using Eclipse and it works fine outside from an Android ...
2
votes
0answers
345 views
Plot graph using multiple database values in Android app
I am currently using afreechart to plot a graph in my Android app. I am using the TimeSeries graph, that they've exemplified in their sample app. For me, data to be extracted from two databases.Two ...
2
votes
4answers
5k 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 ...
2
votes
0answers
188 views
Android: Exception applying a ColorMatrixColorFilter to a Paint object, but only for certain Bitmaps
I am kind of a beginner to Android programming, but I've spent a lot of time pinning this down, so hopefully someone knows what's going on. My app has a bunch of Thing objects, each of which has a ...