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

Search results

  1. R

    GT5 Checklist

    Hello, Gran Turismo 5 was released for the PS3 not too long ago and with the amount of cars available (1,031 to be exact) I needed a way to keep track of what cars I owned for my car collection, so I created a simple checklist app. You simply select the make of the vehicle, then select the car...
  2. R

    Apps File hosting

    When my app starts, it checks to see if it has a database in the proper directory...if not (first time running the app) it will download from the internet. I've heard different opinions about where to host the file needed...some suggest simply using a website hosting service. Others suggest...
  3. R

    Apps TableLayout issue using images

    Hello, So, I'm trying to learn how to create different layouts and truly understand how to use them. What I'm trying to accomplish is a simple header image at the top of the screen, followed by 2 views (an imageview and a textview), equally spaced below that. So, I figured I'd put an...
  4. R

    Apps Simple data

    When searching for how to store small pieces of information for my app I run into this a lot, "Unless your application deals only with simple data, you need a database system to store your structured data". So, how do I handle simple data? With FileInputStream? Where is this hard to find...
  5. R

    Apps Starting new activity using Intents

    Hello. I have 2 classes, Screen1 and Screen2. On Screen1, I have a button which when pressed should load Screen2. I'm having such a hard time figuring it out. I'm getting a force close button in the Eclipse emulator when I click on the 'New Game' button. Here is the relevant code. If you...