Android :: Mystery Null Pointer Error Seeking Opinions
Oct 31, 2009
An error that appeared in my Flurry logs but seemed impossible to reproduce otherwise just occured That's the good news.The bad news is that the LogCat info is not telling me enough.I would appreciate a second set of eyes taking a look and offering wisdom.The lead up is that I was playing with my app, and put it away for a while. I did a lot of other things with my phone since, like making phone calls, etc I hooked up my phone to the computer to make another attempt to find the mystery bug, and decided to see if anything weird appeared in the logs from earlier.I then brought my app to the foreground using the Home/Hold technique and whamo the bug appeared before my eyes in LogCat.
View 4 Replies
Jul 20, 2010
I am trying to do what I think is a fairly simple task to authenticate a user on my server. I am using AsyncTask as a private subclass of my Activity, however when I try to populate the user object after authenticating it keeps setting it to null. Is there something strange in how the onPostExecute() method is called that is causing this? I originally had the AsyncTask as its own class but ran into the same problem, so I am try to solve this using a private subclass.
View 2 Replies
View Related
Aug 31, 2010
When I view the following xml file in the layout view (eclispse), I got NullPointerException:null message, but when I run the code, it works.
CODE:..............
View 1 Replies
View Related
Jun 15, 2010
I'm working on an application where I want to add adWhirl to manage adds. The app is working fine until I tryed to use adWhirl. I have try to get the view created with setContentView(R.layout.main) by calling LinearLayout layout.
View 2 Replies
View Related
Oct 5, 2010
The line "return db.insert(DATABASE_TABLE, null, initialValues);" is returning a null pointer and I cant figure out why! I'd be grateful for any help public class Database extends Activity {
@Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
DBAdapter db = new DBAdapter(this);
if(db != null){
long id = db.insertUser("test", "test");
Cursor c = db.getUser(id);
Log.d("DB", c.getString(1));
Log.d("DB", c.getString(2)); db.close();.......
View 1 Replies
View Related
May 31, 2010
I'm writing an android program in which I have an activity that uses tabs.Anybody have any idea how I can get this content into a tab without crashing my application? My actual program is more complex and has more than one tab but I simplified it down to this in an attempt to find out why it's crashing but it still crashes and I don't know why.If I don't use LayoutInflator my program doesn't crash but I don't get any content either, just tabs.
View 1 Replies
View Related
Apr 1, 2010
I'm installing the Android SDK on Mac OS X. Following the instructions on the Android Development site, I've downloaded the SDK and modified my .bash_profile to include the path. The next step is to use the Android SDK and AVD Manager to actually download the platforms.
However, when I use the Manager to install the platforms, I get the following error in the Terminal. I've looked around for similar problems in the Eclipse and Android forums and haven't found anything yet. Is something else damaged in the environment and needs to be repaired? Any recommendations on where I should look? Code...
View 2 Replies
View Related
Sep 4, 2009
I am receiving Text messages from another application sent through broadcast intent. I am displaying these messages to my application's GUI. In my application I had defined <broadcast receiver> in my manifest.xml
<receiver android:name=".HHBroadcastReceiver">
<intent-filter>
<action android:name="android.demo.test"/>
</intent-filter>
</receiver>
And also define the logic in the Broadcast receiver class
public class HHBroadcastReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { //TODO: React to the Intent received.
String msg_receive = intent.getStringExtra("message1");
AssetTest.hh_text.append("
"+msg_receive); } }
View 2 Replies
View Related
Sep 28, 2010
I need to disply current Position latitude and logintude...I tried but it will show Null pointer exception.. here with i attached my code...
I run this application on android emulator
CODE:...............
View 11 Replies
View Related
Apr 23, 2010
I cant figure out why my program is showing null pointer exception. Plz help me.I have declared the getter and setter methods in a seperate claa named SongsList. Plz help me determine the problem...
View 1 Replies
View Related
Nov 21, 2010
I have a null pointer on a button that I need to take me to a new layout when pushed. I have the code set as:
((Button) findViewById(R.id.analyzee)).setOnClickListener(btnClick); inside a method that uses conditional statements. It is a basic face detect app. If faces are not found, I do this:
if (facesFound < 1) {
mFlipper.setDisplayedChild(2);
mTheMessage = (TextView) findViewById(R.id.falsemessage);
mThePicture = (ImageView) findViewById(R.id.false_view);
mTheMessage.setText(R.string.noFaceOne);
mThePicture.setImageBitmap(bitmap565);
return;
if faces are found, I draw a box on the face, and do this: Code...
So, my issue lies in this: In one of my layouts in the flipper, the button that rests on the layout will need to give the user the option to snap a new picture if there are no faces found. The other layout will need the button (upon click) to have the faces cropped and the results to be sent to another layout.
The issue I am facing is where the code: ((Button) findViewById(R.id.crop_face)).setOnClickListener(btnClick);
needs to be placed in order for the program to release the button has been clicked, it calls the case in my switch statement, and runs the crop face_method.
I try putting it in the if statement where I set the image View and text View, but I get a null pointer on that line I am declaring my button on.
The buttons I have on my main menu work fine, as they are in my onCreate method, but I don't know where to play this button command, and also where I need to place my reopen Camera command.
View 1 Replies
View Related
Sep 8, 2009
I'm trying to get a location from lat /lon values with the getFromLocation function:
adresses = geocoder.getFromLocation(lat, lon, 1); // Search addresses
The function should return a empty List, if it don't find an address, but it throws the NullPointerException. What can/must I do to fix it?
View 2 Replies
View Related
Nov 16, 2009
I've had fine luck using SQLite with straight, direct SQL in Android, but this is the first time I'm wrapping a DB in a ContentProvider. I keep getting a null pointer exception when calling getWritableDatabase() or getReadableDatabase().
Is this just a stupid mistake I've made with initializations in my code or is there a bigger issue?
CODE:.........
But here's LogCat showing the exception:
View 2 Replies
View Related
Sep 23, 2010
When my app loads, I fill my android.app.Application with some data. The app runs fine as I use it and all the data is available. However, when I leave the app over night and look at it again the next day, I receive NullPointerExceptions when attempting to use that same data. I do not believe Application objects get garbage collected, so I have no idea what is going on? I also lose static objects in classes used by my Activity classes. I am on Froyo 2.2 on a Google Nexus One. Looks like someone else had a similiar issue: http://groups.google.com/group/android-developers/browse_thread/threa...
View 6 Replies
View Related
Feb 11, 2010
While building the android app using ant am getting the following exception. Couldn't figure out why these exception are thrown! Code...
View 3 Replies
View Related
Feb 9, 2010
I have been following the Android getting started docs and when I try to run the project I get: !MESSAGE An internal error occurred during: "Launching HelloAndroid". Code...
View 2 Replies
View Related
Nov 12, 2010
I have the following very simple class which looks for the last known user coordinates and then prints one of them. But I am getting loc as null variable. That is the application is not reading the data into the loc variable. Still it doesn't fire any toast command in the function. Code...
View 4 Replies
View Related
Jun 2, 2010
My web service should be returning an integer, but every time i run the code i get the NullPointerException error. i think my url string may be the problem, but i've tried using my ip with no luck. Code...
View 1 Replies
View Related
Sep 16, 2009
I have created a simple driver to implement mmap and an application program to uses the sys call mmap and tries writ/read data. The mmaped area is the RAM.(I am working on beagle board) This works fine when I execute my application program through the shell/console but fails (with the following error) to work when executed through an apk. Unable to handle kernel NULL pointer dereference at virtual Code...
View 2 Replies
View Related
Jul 31, 2010
I am trying to create a simple 3-D app for android that will have an additional view layered on top of the OpenGL view (much like the SurfaceViewOverlay example in the API demos). I'm running into an issue trying to implement that method with an extended GLSurfaceView class. I've set up an example where I'm trying to do a combination of this demo with the API Oerlay demo. If I try to cast to a Martin's VortexView object like this (replace lines 44-46 in the API demo) I get a ClassCastException error (which is understandable, as I assume casting is fairly specific) so I guess I'm looking for a method to transfer the view from a GLSurfaceView instance to a new subclass or a way to set the rendering surface to an XML defined view for a subclass after it has been created. it will do the casting correctly with the above code but generates Null Pointer Exceptions when it hits the surfaceCreated and surfaceChanged routines (I think it's the called methods in the GLThread class based on the line number) inside the GLSurfaceView class. So maybe I should change the question- How can I implement an extension for GLSurfaceView without generating NullPointerExceptions on surfaceCreated and surfaceChanged, or how can I debug them without having the source for GLSurfaceView.java? Code...
View 1 Replies
View Related
Oct 27, 2010
I looked at the 2 examples on Stack, but can't get them to work. I'm simply trying to grab an image from a folder in assets and set it as in ImageView, but get a null pointer returned.
Main Activity:
CODE:...........
And my two xml files:
CODE:...........
Also tried this, but still get a file not found exception.
CODE:.......................
View 1 Replies
View Related
Sep 20, 2010
I have a Thread that downloads data from internet
CODE:..........................
There is an activity that needs to be updated according to downloaded data.
CODE:............................
Whenever I run above code I get NullPointer Exception .Please help me to update the view.
View 1 Replies
View Related
Jul 27, 2010
I have built an activity to handle gestures in my Android game and want it to respond to a gesture anywhere on the screen but I am getting this error on the Log:
CODE:...............
I understand I need to allocate a view to the activity and as you will see in my XML, a view called gestures will serve this purpose but I keep getting Inflation errors when trying to inflate the view. Before when this happened to me it was a misspelling of the view name in the XML but that's not it this time I don't think.
How would I properly assign the 'gesture' view to this activity to prevent the errors?
I have defined my activity in my code like this:
CODE:...............
I have created the activity in the main thread in it's doStart() method by saying:
CODE:............
And my XML layout looks like this:
CODE:...................
View 1 Replies
View Related
Aug 27, 2010
I'm having trouble with a spiner throwing a nullPointerExpression I'm sure I'm missing something stupid? Code...
View 2 Replies
View Related
Aug 7, 2010
We have a android application that works fine up to android 2.1, but when we try to release it for android 2.2 we get a nullpointerexception. This happens when we're parsing a xml, on the following line of code...
View 2 Replies
View Related
Aug 22, 2010
I am new to Android development since my EVO purchase a few months ago. Anyway, I am developing my first Android app using Eclipse and Android SDK emulator. I am trying to do a simple HTTP POST. My real code has my login information hard coded in so I replaced it with test information and I changed the url as well to simply POST to google.com. I am getting a NullPointerException when trying to view the HTTP POST request response. I have added the internet permissions to my manifest xml file as well. Code...
View 1 Replies
View Related
Nov 8, 2009
I'm working in with the Android SDK 2.0 / Galileo / ADT 0.9.4 (latest to date). Against Android 1.5 API layer. If I go to the layout editor and add an AutoCompleteTextView the screen immediately gives me a NullPointerException. Does anyone have a documented workaround for this problem? I can't seem to find one. This is obviously a bug in the Android SDK. (It's been filed anyway.)
View 1 Replies
View Related
Mar 18, 2010
I am creating an application which tracks the users location using GPS, stores the longitude and latitude in a database using a content provider then output the first long and lat to a mapview. I am able to create the cursor using this line of code...
View 1 Replies
View Related
Aug 20, 2010
I'm just getting started with Android app development on a Mac, and I keep getting a NullPointerException everytime I go into Strings.xml to edit it. Here's the steps I followed - The project compiles and runs fine, but if I add even a single character to Strings.xml, a popup comes up that says - "An error has occured. Please see the log for details. An error has occured. Please see the log for details." When I click details, all I see is - "An error has occurred. See error log for more details. java.lang.NullPointerException" Anything I'm missing completely? Code...
View 2 Replies
View Related
Nov 6, 2010
In my main activity, I have the following code that calls my FileBrowser activity: What's wrong? Can I not use putExtra with startActivityForResult? Can putExtra only be used with startActivity? Code...
View 1 Replies
View Related