Tagged Questions
0
votes
0answers
29 views
RuntimeException: Method called after release() Android
I am developing an app that reads a QR code, sends some information to database and gets ready for next QR code after 5 seconds in on onPostExecute() of AsyncTask. However, sometimes I get this error:
...
0
votes
1answer
54 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
1answer
60 views
Android AsyncTask RunTimeException
I'm getting following RunTimeException when executing AsyncTask's execute() method.
I execute AsyncTask by clicking on the button whose listener is shown below
this error log.
05-15 12:56:50.045: ...
0
votes
1answer
50 views
Android TextView append SpannableString forcing java.lang.RuntimeException on Nexus 7
I have a serious problem which crashes my app.
I'm loading some text in the app into a TextView. Some parts of this text are clickable and should call another activity - this works fine for most ...
0
votes
0answers
33 views
Mediarecorder.start() RuntimeException: start failed android 4.0.4
Tried to make an camera app and have followed googles developer guide, but I get an runtimeException: start failed on my android 4.0.4 device. However it works on my friends 4.2.X Samsung. Tried to ...
0
votes
0answers
33 views
Android: No such column
Here“s my log-file:
05-04 09:29:10.968: E/SQLiteLog(26491): (1) no such column: datum
05-04 09:29:10.968: D/AndroidRuntime(26491): Shutting down VM
05-04 09:29:10.968: W/dalvikvm(26491): threadid=1: ...
0
votes
1answer
44 views
Android random crashes
Recently I uploaded an app and have received many IllegalStateException and RuntimeException errors. They seem to occur whenever an activity ends/begins but I cant find any explanation. In one of my ...
2
votes
1answer
104 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 ...
0
votes
0answers
53 views
the page 1 was request but the document has only 0 pages
So I am trying to generate a report that may contain many pages depending upon the user input and data.
Similar error was summarized here but its not seen to be the actual solution of the problem.
...
3
votes
2answers
109 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
164 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 ...
0
votes
1answer
412 views
Android - Creating a PopupMenu on clicking an ActionBar button
I am trying to make a PopupMenu appear after I click a button in an action bar.
I have got the buttons in the file - action.xml in the 'menu' folder.
This contains the buttons for the ActionBar.
...
0
votes
0answers
51 views
RuntimeException when trying to getParcelableArray in target activity
I'm trying to pass an array of custom objects to an activity. I've implemented parcelable as such:
public class WidgetState {
static class Light implements Parcelable
{
int id;
...
0
votes
1answer
171 views
APK Crash when installing from Google Play but not from eclipse/apk file
I released a new version of one of my apps and I start getting tons of errors from users about crashing issues when the application start.
These are the errors I'm getting:
First error:
...
0
votes
1answer
48 views
RunTimeException in ButtonFragment class
I'm getting a runtime exception from my buttonfragment.class. I doing a fragmented button bar, each button with it's own layout and activity. I've been changing things around and can't figure out ...
0
votes
3answers
119 views
Android java.lang.RuntimeException: Unable to instantiate activity
I am currently stuck with the following errors from Logcat. I've looked at over ten other posts similar to this problem and could not find solutions to my problem.
03-22 17:55:58.777: E/Trace(1172): ...
0
votes
1answer
166 views
Android taking photo when user fails password
I have a DeviceAdminReceiver, and I want to take a picture with the front camera when the user fails the password - but I got an error...
The code:
@Override
public void onPasswordFailed(Context ...
1
vote
0answers
48 views
Failed to unregister input channel
In one of my marketplace apps, I'm seeing a few reports of these from the wild from time to time, and can't determine why they are being thrown. I'm not doing anything that I would consider unusual ...
0
votes
2answers
252 views
java.lang.NullPointerException in android emulator
I am making a application in which i create a list view with two text fields and one check box ....and when i click or check on check box then the both text are added to database. but my emulator ...
1
vote
1answer
113 views
java.lang.RuntimeException: Failed to invoke public com.example.syncapp.MessageBase() with no args
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub
...
-2
votes
6answers
88 views
NullPointerException for Android Java
I had a previous question similar to my current problem, and that was when I retrieved null values from my String arrays, now my problem is that I think I'm also getting null values from my integar ...
0
votes
0answers
224 views
Android : Take a photo or an image from the gallery to crop it, runtimeException while changing Intent Uri
at some point in my application, I have to either take a photo or an image from the gallery and crop it.
I manage to do all that, but the problem is that when I crop the image, it crops the original ...
6
votes
2answers
194 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 ...
0
votes
3answers
89 views
MapView ClassCastException
Here's the LogCat content :
02-25 15:57:42.481: E/AndroidRuntime(1327): FATAL EXCEPTION: main
02-25 15:57:42.481: E/AndroidRuntime(1327): java.lang.RuntimeException: Unable to start activity ...
0
votes
2answers
63 views
multitreading UI : exceptionininitializererror and runtime exception android
I'm trying to make multithreading but I've got this stacktrace on few smartphones (SGS2) :
java.lang.ExceptionInInitializerError
at ...
0
votes
1answer
1k views
java.lang.RuntimeException: Unable to start activity ComponentInfo{…}:java.lang.ClassCastException: android.app.Application cannot be cast to
I'm creating an Android app which uses Microsoft Hawaii OCR; during the test of my app, it crashes giving me this error:
02-08 11:38:38.861: E/AndroidRuntime(4704): FATAL EXCEPTION: main
02-08 ...
0
votes
2answers
80 views
RuntimeException with SQLite database - Android
I tried to alter some of my file names on my laptop and I must have screwed something up with my program. The program runs fine until when it gets to the point where it needs to open the SQLite ...
1
vote
3answers
418 views
What causes “RuntimeException: Binary XML file line #20: You must supply a layout_height attribute.” (ActionBarScherlock is suspected)?
I have app with ActionBarScherlock and I use ACRA. I receive crash reports from some users with following error:
"java.lang.RuntimeException: Binary XML file line #20: You must supply a layout_height ...
2
votes
1answer
191 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. ...
0
votes
1answer
125 views
Object Animator throws Runtime Exception though everything looks okay to me. Please point out what is causing this
It was running okay before adding and object animator to animate an ImageView. But after creating an animation, it started throwing Runtime Exceptions. I can not figure out what is the problem though ...
3
votes
2answers
251 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);
...
0
votes
1answer
104 views
Runtime exception/ null pointer exception
I have many activities very similar to this on and they all work but this one When the activity is opened I get these errors in the logcat. There are no visible errors in eclipse except for in the ...
-1
votes
1answer
200 views
RuntimeException: Can't create handler inside thread that has not called Looper.prepare, while using sendPostRequest [closed]
Here is my code.
In this I log in through fb and its working fine, but when trying to get Facebook id and email address for further requirement, it is showing ExceptionInInitializerError,..
Can ...
2
votes
2answers
852 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 ...
0
votes
3answers
425 views
RuntimeException: Unable to resume activity. Intent getting Extras
I really don't know what's wrong:
I've made function, that moves user to AddNewQuestionClass
//function is in Activity Class
public void wroc(String sciezka){
Intent intent = new Intent(this, ...
0
votes
3answers
250 views
RuntimeException: Unable to start activity (Android)
I am working on an app and am getting a strange error. Two out of the three devices that have been used so far to test the app work perfectly when the log in button is tapped and a new activity is ...
0
votes
2answers
67 views
Immediate crash upon launch - Android
My app is crashing immediately upon launch. I cannot figure out why. I was having other issues with this app that were solved in another thread, however, the issue I'm having now is completely ...
-1
votes
1answer
254 views
Googlemaps in android “unable to start activity ComponentInfo”
Why am i gentting this? The application was running just fine, wher i decided to do the tracaRota Method to build a route from uma ponit to another, and it started to do that and the app dont even ...
1
vote
2answers
1k views
java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=intent} to activity
In my app I hit a button called Pick Photo and it loads the gallery. When I click an image in the gallery, the app force closes and in my logcat I receive the following:
...
0
votes
2answers
430 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
2answers
148 views
AsyncTask gets out of step when hitting Home button over and over again
I have an AsyncTask which does a lot of JSON calculations.
public class InitializationTask extends AsyncTask<Void, Void, InitializationResult> {
private ProcessController processController ...
0
votes
1answer
93 views
Can't implement extended TextView
I just found the AutoResizeTextView by Chase
Auto Scale TextView Text to Fit within Bounds
But I couldn't make it run yet.
AutoResizeTextView monologTextView;
monologTextView = (AutoResizeTextView) ...
0
votes
1answer
169 views
java.lang.RuntimeException: Expecting menu, got ScrollView
I have created an android application which runs perfectly in Samsung galaxy ace device.
But when I run the same on HTC Desire V, it is giving FATAL EXCEPTION.
Note: Samsung device is 3.5 inch screen ...
0
votes
1answer
192 views
Android: Cannot instantiate receiver
I am developing an android application that receives SMS messages and uses this data inside the application. Because I want the SMS messages' BroadCastreceiver to close when I close the application, I ...
0
votes
0answers
125 views
Getting null pointer exception and unknown resource
In my code I am getting this error. I pasted full log cat java.lang.RuntimeException: Unable to start activity
ComponentInfo{sa.com/sa.com.activity.EmailRegistartion}: ...
0
votes
0answers
107 views
RunTimeException trying to load admob adview from xml
I'm trying to put ads into my application from Admobs. I've done this for a previous application of mine and ran into no errors. However, when trying to put ads into this app it force closes with a ...
0
votes
0answers
1k views
(Android) Unable to start activity ComponentInfo: java.lang.NullPointerException
I have a problem, I get RuntimeException everytime I try to start a new activity with this code:
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case ...
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}: ...
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 ...
1
vote
1answer
174 views
java.lang.RuntimeException and unable to instantiate
I've tried to find the solution to this, but it looks right to my n00b eyes so I'm completely lost. I've tried looking for other problems and they all seem to have different answers so their no help ...

