[android-developers] Re: soft keyboard does not show when creating EditText inside a TableRow dynamically (programmatically )

2010-02-02 Thread Justin Matthews
Looks like this is being caused by the call to txt.requestFocus(). Changing to txt.requestFocusFromTouch() solves this problem. -justin -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers

[android-developers] Re: soft keyboard does not show when creating EditText inside a TableRow dynamically (programmatically )

2010-02-02 Thread Justin Matthews
If a EditText is created not within the TableLayout, this dynamically created EditText works as expected. The soft keyboard pops up when first clicking into the newly created EditText. This must have something to do with the way the EditText is created inside a new row. Any ideas? Thanks. Code