Hi, I'm new on Java/android and I wounder how could I get name of each control in a layout, ex.
for (int i=0;i<table1.getChildCount();i++ )
{
Object child=table1.getChildAt(i);
if( child instanceof EditText)
{
//get control name here
}
}
if anyone can help me thanks