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

Search results

  1. E

    Apps Android application development bottleneck

    Hello, I consider myself a fairly average in knowledge programmer who has worked with C# code. I have been working with developing a couple of Android apps using the Eclipse environment (Eclipse Galileo). I work with the NDK and the emulator using Android 1.6. I have many problems when...
  2. E

    Apps List for picking names from a database

    Hello, I am creating a simple Android app that has a list of data in a SQLite database. I want to have a list of say all the last names, where one can choose from a list. When a user clicks an item in a ListView, I would like that record to be read from the file. However, my On Click Handler...
  3. E

    Apps Starting new activity (screen) freezes android app

    I have developed a simple android app where there are two screens. One class has a running activity. At the bottom of the screen there is a submit button. When I press submit, the following code is executed: public void getCountingMatrix() { //clear screen Intent i = new...
  4. E

    Apps Global variables in android app

    Hello, I'm trying to implement a global property to variables. From another activity, I'd like to access values that are in another activity. From what I've seen through Googling, it seems that adding a class like the following will resolve this issue: class MyApp extends Application {...
  5. E

    Apps Overlaying text onto buttons in a gridview

    Hello, I am still quite new to developing apps with Android. I'm using a Gridview to show a 4x4 matrix of buttons. I would like to overlay text onto the images to show the number of times that they have been pressed/clicked. I'm not quite sure how to do this. I am able to display some images in...
  6. E

    Apps Cannot access variables from main.xml

    Hello, I'm new to Android programming. I have a program that looks like this: Here is the main java block: public class MyAndroid extends Activity { private EditText input1; /** Called when the activity is first created. */ @Override public void...