hmm - seems like you might want to just add a TableLayout (http:// developer.android.com/guide/topics/ui/layout-objects.html#tablelayout) to your main view at runtime and then create EditText controls in each TableRow. Of course, if your layout can be static (fixed number of rows/cols), then you can just do all this in the layout XML file.
-Mike On Oct 13, 10:01 am, sunny <[email protected]> wrote: > Hi, > > I am a newbie to Android development. > > I have created a grid of rows x columns by creating a class which > extends a View and then painting the grid lines on the canvas. Then I > was able to pop up the soft keypad when a user touches any cell on the > grid. > > 1) I want to know how can I make the cell take input from the > displayed soft keypad. eg :- I type 'A' on the soft keypad, then the > alphabet 'A' should be shown in the selected cell. I am unable to > achieve this. > > 2) How can I achieve horizontal fling on the grid so that I can scroll > horizontally ? > > Thanks, -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

