The loop condition should be:

for (.... i < s[0].length ; ... )

As for debugging:

Eclipse has a panel that shows local variables, which are updated as you step through the code.

Once you're in the Debug perspective, use the menu bar: Window - Show View - Variables. You can expand arrays there and look at the values inside.

-- Kostya

19.03.2011 18:48, Alaeddine Ghribi пишет:
I tried this but i have a FC:
for (int i = 0; i<  s.length; i++) {
                        Log.d("Saves",s[0][i]);
                }



--
Kostya Vasilyev -- http://kmansoft.wordpress.com

--
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

Reply via email to