Android :: GetPadding() Of NinePatchDrawable Throw A NullPointerException?
Oct 12, 2009
I'm trying to use NinePatchDrawables in a LayerDrawable, but for some reason I get a NullPointerException. I've isolated the problem to the getPadding() method; the following code reproduces the problem:
CODE:...............
What am I missing? Do I have to do anything special with the NinePatch? The program seems to work if I use the NinePatch directly (instead of putting it in a LayerDrawable).
View 6 Replies
Jun 13, 2009
Is it possible to use "stretchable" graphic as pin in ItemizedOverlay? If not how can I draw NinePatchDrawable on Canvas?
View 4 Replies
View Related
Mar 2, 2009
I am trying to create a NinePatchDrawable programmatically, but there is no documentation on the constructor's argruments (Bitmap bitmap, byte[] chunk, Rect padding, String srcName). Does anyone know what chunk and padding are... and how to specify them?
View 7 Replies
View Related
Aug 9, 2010
The problem with NinePatchDrawable. Created 9.png file using a utility draw9patch, but when the throw the file in a folder res/drawable error: No resource found that matches the given name.
View 4 Replies
View Related
Nov 19, 2010
I make login in my main activity.
If the login is correct, I wanna see my profile and download some data from server, but I cannot keep the connection, if I change activity.
How can I do this?
View 3 Replies
View Related
Mar 9, 2010
I am trying to throw 4 tables into a List<table> and then run a query on each through a loop... this isn't really working. ollowing code totally freehand as I had to undo the code I wrote because it wouldn't run :
//this first line is the one that I would imagine is the linchpin on getting this to work List<table> mTables = new List<table>(); mTable.add("character1") //add character 2 //add character 3 //add character 4 for (int i = 0; i < 4; i++) { mCursor = db.query(mTables.get(i), null null.......); mCursor.movetofirst;
//use ContentValue to update a few fields
View 5 Replies
View Related
Nov 13, 2009
I want to change the current activity inside a tab in a tab activity, after some research, I know that I need to use activity group to go this.
Then I created a new class extends ActivityGroup with the code below:
CODE:............
Then I run the program, the program throw the ActivityNotFoundException when the intent for the tab is launched.
View 4 Replies
View Related
May 26, 2010
ActivityManager am = (
CODE:.........
Exception
CODE:..................
View 4 Replies
View Related
Apr 11, 2010
Hello, I use a thread for drawing to the canvas. By coincidence I recognized that in the program always jumps into the finally part. After view.onDraw(c); is reached it steps back to synchronized (surfaceHolder) and then it steps into the finally part. This happens every time. This means to me that every time exceptions are thrown.
Can anybody explain why this is so?
CODE:......................
View 3 Replies
View Related
Nov 26, 2009
I'm currently working on an XMPP app' on Android and I'm pondering about the best way to throw a different type of Exception than a RemoteException to my activity from my service.
As it seems impossible to throw another thing than a RemoteException using IPC (you can't declare to throw anything in your .aidl), I just see two solutions:
Create a listener for my activity to listen on my custom XMPP exception, which in fact will not be thrown but just sent as a usual object implementing the Parcelable protocol.
Catch my XMPPException and throw a RemoteException (with a content updated with my XMPPException) - But in that case, how could I know on my activity if it's an XMPP or a real RemoteException ? By tagging the name of the exception and parsing it on my activity ? It would be really gore.
View 2 Replies
View Related
Sep 1, 2009
A strange error: when DatePicker is used as child item of <TableRow>, it throws out StackOverflowError and then the application crashes. It would work fine if it is defined outside of <TableRow>.
Do not know why ....... Is it related to my UTF-8 strings defined in strings.xml?
CODE:.........
The exception:
CODE:......................
View 6 Replies
View Related
Aug 16, 2010
There does not seem to be any Android manifest permission that needs to be set for file io. Code...
View 2 Replies
View Related
Nov 15, 2010
This does not refer to anywhere in my code at all.
How do I go about getting to the bottom of it?
CODE:..........................
Here is the draw method of the ItemizedOverlay
CODE:..........................
I now print out the stacktrace and no difference!
View 1 Replies
View Related
Oct 15, 2010
I am (supposedly) catching NullPointerException and returning 0 if that happens. But occasionally I get NullPointerException failure anyway. Is catching it this way no enough to prevent this failure?
private char getCharBehindCursor (int offset){ // get a single char behind cursor + offsett CharSequence cSeq; InputConnection inputConnection = getCurrentInputConnection(); if (inputConnection != null){ try { cSeq = inputConnection.getTextBeforeCursor (offset + 1, 0); } catch (NullPointerException npe) { /* failure*/ return (char)0; }
if (cSeq.length() == offset+1){ return cSeq.charAt(0); } } return (char)0;
View 3 Replies
View Related
Jul 28, 2010
i get NullPointerException at the start of the for where am i going wrong?
public void checkzone(Location loc)
{
X = new List<float[]>() {
};
Y = new List<float[]>() {
};
X.clear();
Y.clear();
float x = (float) loc.getLatitude();
float y = (float) loc.getLongitude();
float A1X[] = {(float) 41.992853, (float) 41.994815, (float) 41.995158, (float) 41.993065};//DOMA..........................
View 2 Replies
View Related
Oct 9, 2010
I'm using a lazy image loader for my ListView with the following code inside getView():
CODE:.........
And the following inside the AsyncImageLoader class:
CODE:........
For an unknown reason to me, after to switched from using the common SQLiteOpenHelper to a custom one which allows me to store my database on the SD card, every 6th or 7th image that is loaded throws a NullPointer at:
imageCallback.imageLoaded((Bitmap) message.obj, wallpaperNumber);
I've checked everything and don't actually know what variable is actually null.
View 1 Replies
View Related
Jun 23, 2010
I am trying to save the date of file parsing, so that when next time user, opens the application, the date can be checked against the last parsing date. I am using shared preference to save the data and retrieve it, but getting error. here is the code:
SharedPreferences settings = getPreferences(0);
String today = new Date(System.currentTimeMillis()).toString();
SharedPreferences.Editor edit = settings.edit();
System.out.println("******** Today : " + today);
edit.putString("lastdate", today);
String fetch = settings.getString("lastdate", "0");
System.out.println("******** Fetch : " + fetch);
txtTest.setText(fetch);
but I am getting null pointer error. am I missing something?
View 2 Replies
View Related
Oct 3, 2010
This is the code for my custom provider, mostly copied from the SDK notepad project i cant understand why am i getting nullPointException, why doesnt the provider instance get created?
CODE:............
LogCat
CODE:..........................
View 1 Replies
View Related
Mar 8, 2010
I'm trying to change the content of a row in ListView programmatically. In one row there are 3 TextView and a ProgressBar. I want to animate the ProgressBar if the 'result' column of the current row is zero.
After reading some tutorials and docs, I came to the conclusion that LayoutInflater has to be used and getView() - overriden. Maybe I am wrong on this. code...
View 1 Replies
View Related
Apr 28, 2010
I am trying to create a list view which as TextView that can display html content , an WebView and other basic TextViews.I tried to extend SimpleAdapter but i struck with the problem ,I will be glad if someone can point out the mistake i am doing.
In onCreate method:
CODE:.............
And my row.xml file looks like:
CODE:.............
The error i was getting was:
CODE:..................................
View 1 Replies
View Related
Jun 12, 2009
I created a custom SurfaceView called CaptureView and tried to add it into main.xml file.The application seems to work fine but if I switch from main.xml tab to Layout in Eclipse the text NullPointerException appears instead of layout preview.Does anyone know how this issue could be solved?
View 2 Replies
View Related
Jun 28, 2010
I am using Eclipse 3.6.0, when I try to edit the strings.xml the Eclipse show me NullPointerException.
Any solution or advice how to handle this?
View 3 Replies
View Related
Jun 30, 2010
I have looked and looked, and cant seem to get to the bottom of this.
I am getting the error: "java.lang.NullPointerException"
whenever I try to change anything at all within "strings.xml" when using eclipse, does anyone know of a reason behind this? I havnt changed anything else in the project at all, I'm just going straight into strings to try editting a few things.
View 18 Replies
View Related
Jun 28, 2010
it has taken more than i expected to get the dev environment up and running - mostly a PATH issue which was solved using: http://groups.google.com/group/android-developers/browse_thread/threa...
My emulator now works (and i can run it and get the default android screen) however when i try to run the hello world sample code i get this error message:
An internal error occurred during: "Launching HelloAndroid". java.lang.NullPointerException
View 2 Replies
View Related
Oct 20, 2010
I'm getting this crazy error on multiple projects, even when I revert back to prior versions that compiled just fine. Unknown Error - java.lang.NullPointerException Android Packaging Problem Path is blank Location is Unknown. 1 - Project -> Clean -> All 2 - Deleting .metadata folder 3 - reimporting projects into the eclipse 4 - reverting my projects back to prior working versions using git. I just can't get anything to compile now, and I've searched for solutions here and on eclipse forums.
View 3 Replies
View Related
Jul 22, 2009
I have one Activity, that starts one Service and my service will lunch one Activity, i wanna to stop the Activity which one started my my Service after few seconds. Is there any way to achieve. Has anyone experienced this type of scenario.
View 2 Replies
View Related
Oct 6, 2010
I have a Service Receiver and a phone state listener class to determine the status of the phone. When the state is "CALL_STATE_RINGING", I call upon the method stopAllPlayback() in my main Activity. It is at this point that users report "Forced Close" messages. Can you help me determine where the problem might be? I'm new to Java so I'm not 100% sure how to troubleshoot based on a stack trace.
Here's the stack trace:...............
View 1 Replies
View Related
Aug 23, 2010
Thread [<1> main] (Suspended (exception NullPointerException)) ArrayAdapter.createViewFromResource(int, View, ViewGroup, int) line: 355 ArrayAdapter.getView(int, View, ViewGroup) line: 323 ListView(AbsListView).obtainView(int, boolean[]) line: 1294 ListView.measureHeightOfChildren(int, int, int, int, int) line: 1198 My symptomremedyActivity.java looks like:................
View 2 Replies
View Related
Jul 18, 2010
Im trying to display this listview, but I keep getting a: 07-17 21:14:22.233: ERROR/AndroidRuntime(349): java.lang.NullPointerException
I think I know what the problem is but I dont know how to fix it.
I have a String array which I will be using to be displayed in my list
CODE:.....
Dont worry the parser works great. the only problem I see with it is that the parser doesnt know how many strings the website will have so I am setting the String array in the parser to be very big: String substr[] = new String[250];
But I know that mostly there are only like 11 to 13 values that I will be storing in that array, the problem I think is when i do this:
CODE:..............
Since the String array is set to have up to 250 values in it and I only actually store say 12 then there are a null entries so when I run the code it shows me my list view, but when I get to the bottom of the view it force closes and the log tells me that there was nullpointer. I can tell how many entries I collected while I am parsing, but how do I tell my listview to only show say 12 items in the list so there wont be any null entries. or is there any other solution for my problem.
I tried doing what you said, but now I am getting a:
CODE:......
This is what I did:
CODE:.................
View 2 Replies
View Related
Sep 9, 2010
i am getting this error java.lang.NullPointerException at android.content.ContextWrapper.getPackageManager when am trying to get list of all installed applications on the device. Well let me explain what my program is doing. I have a server that starts when my application is started, and the client pings the server and asks to get a list of installed applications. The Server then asks the getPackageManager() and gets all the installed applications. But the getPackageManager returns the nullpointerexception. The Server is written in a java environment and is started from my android application. Could someone please tell me what am missing and why i am getting this error? hanks alot!!!Please find the code...
View 1 Replies
View Related