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

Search results

  1. G

    Apps Using Object to define View in Layout

    My post is based on a previous post and greatly simplified from somewhere else that I can no longer find. (Android: Two Views On Top of Each Other Using XML) The file/object DrawV populates the screen with pink circles and allows one to touch a circle to make it disappear. In another file...
  2. G

    Two Views On Top of Each Other Using XML

    I want to display two views on a screen. One is a randomly positioned dot bitmaps. I can get that do display with setContentView(...). I also have two bitmaps and a textview that are arranged via xml layout language and then using setContentView(R.layout.activity_title)...
  3. G

    Apps Trouble installing ADT plugin

    I am trying to install the ADT Plugin. It is not working. Tried: This is after Hello->Install New Software Name: ADT Plugin Location: https://dl-ssl.google.com/android/eclipse (and common alternatives) When I use http://dl-ssl.google.com/android/eclipse, I get no response When I use...
  4. G

    Apps using Handler() to display a series of images

    I am trying to put an image on the screen and change it every five seconds. This is not in an Activity class. Sorry if is a stupid question. This is a huge learning curve for me. public class Panel extends SurfaceView implements SurfaceHolder.Callback { private Handler mHandler = new...
  5. G

    choppy animation in emulator (beginner)

    Hello. I am a (very) beginning android programmer. I don't know if this is an idiotic question or should be in a different forum or what. I am trying to build a really, really basic game that has a ball move randomly around the screen. My first step was to make it bounce off the sides of the...