Should MainLayout be the layout you want to add your Table Layout in,
and MyActivity, your activity ( odds are great that this one is simply
'this' ) :

TableLayout curTable = new TableLayout( MyActivity);
for (int i = 0; i < mNbRows; i++)
{
        TableRow CurRow = new TableRow( MyActivity );
        for (int j = 0; j < mNbColumns; j++)
        {
                // Add your content in your curRow here
                // for instance for a button :
                Button CurButton = new Button( MyActivity );
                CurRow.addView(CurButton);
        }
        curTable.addView( CurRow );
}
MainLayout.addView ( curTable );


Emmanuel
http://androidblogger.blogspot.com/




On Feb 3, 8:26 am, "Muthu Kumar K." <[email protected]> wrote:
> Hi all,
> Can any one help me how to create table layout with out using the
> Android XML.
>
> Thanks in Advance,
> Muthu Kumar K.
--~--~---------~--~----~------------~-------~--~----~
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