• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. BringBackJiraiyaSensei

    Apps How to properly change between a surfaceview and activity?

    Im getting all sorts of errors when i try to run an intent inside my gameview. What im trying to do is basicly to go back to my menu activity after my game is over in my gameview. I cant seem to find any projects or samples that does this properly. Im hoping to use fragments aswell at some point...
  2. BringBackJiraiyaSensei

    Apps google play services games real-time multiplayer api error

    Someone with experience in using the google play service games, that can tell me what this connection error means? ConnectionResult{statusCode=RESOLUTION_REQUIRED, resolution=PendingIntent{d3ec777: android.os.BinderProxy@18b5fe4}, message=null} Cant find any usefull dokumentation about it. And...
  3. BringBackJiraiyaSensei

    Apps real-time multiplayer api conenction failed

    Im trying to add multiplayer to my game, but every time i try to invite others i get this error in my "onConnectionFailed" method which are called whenever there is no connection to Google play services. However i cant see to find much usefull information about this error, other than it MIGHT...
  4. BringBackJiraiyaSensei

    Apps Creating Android OAuth-Client help

    Im trying to acces some google play APIs, and for this ive registrered my ap on play.google.com, but when i try to move further with on step 2. i need to provide a SHA1 certificate, which i havent been able to find out how to get. I did already pay for acces to the these services 25$ i belive it...
  5. BringBackJiraiyaSensei

    Apps How to fetch bitmap named from string?

    How do i get a certain resource based on a name given in the string _bitmap? public AnimatedObject(Context _context, Point _pos, int _rows, int _columns, String _bitmap) { setUsesAnimation(true); pos = _pos; rowsInSheet = _rows; columnsInSheet = _columns; String...
  6. BringBackJiraiyaSensei

    Apps Cant find anything on error"A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 2397 (Jit thread pool)"

    So when im putting breakpoints in my java code to debug my program the game crashes with this error: A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 2397 (Jit thread pool) When i dont use breakpoints and just run the program normally it works just fine. Its very annoying as it effectively...
  7. BringBackJiraiyaSensei

    Apps Unable to start activity ComponentInfo / Nullreference

    Im a bit unsure why i get a nullreference why i place my : DisplayMetrics displayMetrics = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(displayMetrics); in my LevelDesigner class, but when i keep it in the MainActivity there is no problem? I want to handle all my...
  8. BringBackJiraiyaSensei

    Apps Null object reference, but why?

    Im trying to costumize some code from a book to fit my own purpose, however im getting this error " Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.Resources android.content.Context.getResources()' on a null object reference" in...