tags:

views:

74

answers:

1

Am creating a tablelayout which contains 2 textview , 2 edittext and a button. After enter input to 2 edittext,and when i scroll back to first edit text...i got ForcedClose Error message.am creating this using xml.

I add this TableLayout in a scrollview...(i did not got any error while using Android1.1)

Is there any limitations while placing a component in a layout using XML in Android1.5?

+1  A: 

You need to examine the Java stack trace to see where your error is. You can get to the stack trace via adb logcat, DDMS, or the DDMS perspective in Eclipse.

CommonsWare