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

Recent content by cmh0114

  1. C

    SMS Timing App

    I'm developing an app that allows you to schedule a specific time to send a text message. If anyone would like to help test it and make sure it works as it should, please post here. :) I'm looking for as many different types of Android phones as possible, so all are welcome. Thanks!
  2. C

    Apps Android NFC/Bluetooth/Wifi

    Is there a way to use WiFi to send information from one phone to another? How would this be done in software? And would it be better to use Bluetooth or NFC instead of Wifi?
  3. C

    Beta Testers Magnifying App

    I'm looking for beta testers for a new app, some people have been reporting crashes that I just can't reproduce. :/ It's a magnifying app - if you forget your glasses at home when you go out to dinner, just whip this out and voila! No more struggling to read the menu. If the Market does...
  4. C

    SMS Scheduling

    So I've been working on an app that sends out a message to someone at a user-set time. It's available in the Market for $0.99, but if you don't want to pay that right now, just PM me with your email address and I'll send you the .apk. I just charge for it now because Google won't let you...
  5. C

    Apps Updating an App?

    As a developer, how do I update my app? What do I need to put into my code so that, when the new version is uploaded to the Market, it will alert the user that an update is available (within the app), and how do I take them to the Market page for the update? Also, could someone explain the...
  6. C

    Apps Canvas, SurfaceHolder, and Panels. Oh My!

    I'm having some huge troubles with accessing my Panels and SurfaceHolders and Canvases in my program. The code is below (three separate classes), and the program will crash before it even displays anything. Any tips someone can give would be awesome. This is pretty much copy-and-paste from...
  7. C

    Apps Developer Name?

    I'm looking for advice and thoughts on a name for my developer profile. Just because I tend to think that there's a lot said by a name (and because I'm overcritical of my own ideas :D ), I'm really insecure about my ideas on names. The name I came up with for my Developer's profile is CamDroid...
  8. C

    Apps Drawing an image with OpenGL ES?

    Hey everyone, I'm trying to develop a game for Android, and I need to know how to draw an image onscreen using OpenGL - an image that I access from the resources, not created within the program. Any tips? Thanks.
  9. C

    Apps Implementing Drawable draw() method?

    I'm trying to create an object that will extend the class Drawable. However, I have no clue how to implement the draw() method, but if I don't implement it, nothing gets drawn. What code should I put within the draw() method so that my Drawable is drawn?
  10. C

    Apps Draw at (x,y) Coordinates

    Are there any methods for Android that will allow you to draw an image at a given (x,y) coordinate? I'm looking to use this for a game that has objects constantly flying across the screen. Instead of creating a separate layout for each instance of the loop, it will just recalculate the x,y...