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

Search results

  1. K

    Apps App Crash onClick

    I'm creating an app that goes through JSON data on a website and then presents it to the user. It asks the user to enter a game name and searches through the JSON database to get the results. I'm having some problems with getting the results though. It seems like certain results crash the app...
  2. K

    Apps JSON Object Handler Error & Layout Issue

    I have created an app that searches through a game database, obtains the JSON version of that data and loads it into a list view. The user can then click on an item and be taken to another activity with more information. The application works and achieves that. However I think that there might...
  3. K

    Apps Return multiple varibles

    Hi Guys, I a need to create two ArrayLists that contain different sets of information. Is it possible to return more than one variable or should I return a holder with both variables within it?
  4. K

    Apps JSON Array exception

    I'm working on an App that takes the data within a JSONArray and presents it in a list view to the user. The JSON data contains multiple sub-arrays. Below is an example. { error: "OK", limit: 100, offset: 0, number_of_page_results: 1, number_of_total_results: 1, status_code: 1, results: [ {...
  5. K

    Apps Xml Parser and Best Practice

    Hi Guys, I'm a relative novice to Android development. I'm trying to build a simple app that parses xml content from an online database and presents it in a list view to the user. My code has hit a snag though and only gathers the first two results. My code is below. import...
  6. K

    Apps Json Help

    I need to access some JSON info from an online repository. So far I've got an app that so far creates the URL currently as string. When I try to - searchURL = "localhost.com"; URL temp = new URL(searchURL); - I get a malformedURLException. Regardless of that, what do I need to know about...
  7. K

    Apps Static problem

    Hi guys, I am trying to call the setSearch function from UrlBuilder Class, but for some reason I get an error asking me to set my class as static. That's not what I want to do with this class. I know this is a dumb issue, but I would appreciate some help. package com.KarneeKarnay.gamefinder...
  8. K

    Apps Crash on Run

    I'm developing an app that uses google maps, but for some reason it crashed every time I try to call the constructor code from the map class. main import android.app.Activity; import android.os.Bundle; public class MainActivity extends Activity { @Override protected void...
  9. K

    Apps Google Maps Stopped Working

    Recently discovered that IE handles development with google maps so since then I have been using it and phone gap to develop an app. For some reason the maps have stopped working when I run it on my tablet. Any ideas what would cause this?
  10. K

    Apps Need some Advice

    I'm designing an app using PhoneGap that displays a series of images. I used dream weaver to design the web page that is my app so far. What I need help with is two things. 1. I need to create a menu, represented by a series of Icons that remain in the same position even if the user scrolls...
  11. K

    Apps App fails to compile

    I am very new to development on Android phones and started to use AndEngine today. Ran into a weird bug when I was following a basic tutorial. Whenever I run this tutorial example on my tablet it says that the app just fails to work. As far as I can tell the problem is that it doesn't even...
  12. K

    Apps JSON Object help

    I'm working on an app where the user types in a game they are looking for and get information about the game back. One of the things I want to do is get the image of the game from this API I'm using. The problem I have is that I can't seem to retrieve the "image" JSONobject or cycle through it...
  13. K

    Apps JSON Parser/For loop help

    Recently I started developing a app that searches and API to find a game your looking for. A friend of mine lent me his twitter project to edit so I could make my own. I've been modifying it, but the problem I'm having right now is that the for loop is not returning the searched game. The...
  14. K

    Apps Set text hint problem

    I'm fairly new to Android development and I've just been going through the android development tutorials for help, but I'm stuck on this. protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent intent = getIntent(); String message =...