|
Apr 1 |
comment |
In-app billing (v3) - IllegalArgumentException: Service not registered: I have the same problem. It is not a BIG deal, but it is something that bothers. I found a similar problem in github: github.com/ianhanniballake/ContractionTimer/commit/… Do you think this might be the same problem? |
|
Mar 7 |
comment |
Android AndEngine : sprite.detachSelf() doesnt remove the sprite are you sure you used: scene.unregisterTouchArea(sprite) (where scene is the scene or HUD where your sprite was registered and sprite is the problematic sprite)? |
|
Mar 6 |
revised |
AndEngine example not working minor fix |
|
Mar 6 |
answered | AndEngine example not working |
|
Mar 4 |
comment |
Android AndEngine : sprite.detachSelf() doesnt remove the sprite Attaching? I thought you were talking about detaching and avoiding the touch events. |
|
Feb 28 |
comment |
Error: No grammar constraints (DTD or XML schema) detected for the document good (Y). happy coding :D |
|
Feb 28 |
awarded | Caucus |
|
Feb 28 |
comment |
Error: No grammar constraints (DTD or XML schema) detected for the document there is a difference between errors and warnings (red and yellow). If you are using eclipse try to clean and rebuild your project. |
|
Feb 28 |
comment |
Error: No grammar constraints (DTD or XML schema) detected for the document do you have <?xml version="1.0" encoding="utf-8"?> declared at the very top of your file? |
|
Feb 28 |
comment |
AndEngine: UI is not updating in onAreaTouched call It may be because you are not returning true inside the if(pSceneTouchEvent.isActionUp()) block |
|
Feb 28 |
comment |
OnSetContentView not working in andengine with admob I recommend you to use SimpleLayoutGameActivity. It makes a cleaner code when you want to implement Admob (it also improves the performance in your game) |
|
Feb 13 |
comment |
Android removing category from SettingsActivity without crashing app? it is not "buggy"you need to change the pref_headers.xml and put your package name and the name of the activity class that works as Settings |
|
Jan 14 |
comment |
old theme in 4.0+ app Have you checked the target in your manifest? |
|
Dec 31 |
comment |
Change application theme using eclipse? have you tried clean and rebuild the whole application? |
|
Dec 31 |
comment |
Facebook login with Android SDK 3.0 causing ANRs or not working at all Have you tried those hashes with any FB sample? |
|
Dec 28 |
answered | Disabling Android Button depending on Permissions |
|
Dec 8 |
answered | Instantiation Failed: NullPointer Exception |
|
Dec 4 |
comment |
Boolean Logic with If case it does, because you can simplify your cases: case 1.-if((NOT(value>=1) OR NOT(value<=10)) can be written as if(value<1 OR value>10). Which means that you will never get true if value is 1<=value<=10 |
|
Dec 4 |
comment |
Boolean Logic with If case That's true, however your problem is not that, is that your if-statement will always return false if value=10 or 1. I don't want to give you the answer, but I recommend you to read about "De Morgan's laws". As I told you before, try to simplify your if-statement until you get something like "if(A OR B)" |
|
Dec 4 |
comment |
Boolean Logic with If case is like maths. (-1)*(3+6) =>(-3-6). Booleans have a similar behavior |