I am making an android app in which i want to make a dynamic table layout and rows into it. Now i want to use the table layout in another activity That is I dont want to make same table in the second activity. How shall i accomplish this? Thanks

link|improve this question

66% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Try this...

Define your layout in one xml file. ex one.xml

use following code, in which ever xml you want.

<include android:id="@+id/one" layout="@layout/one"
                        android:layout_width="wrap_content" android:layout_height="wrap_content" />
link|improve this answer
I just want to include the same table layout in the second activity not the whole layout? – ekjyot Nov 14 '11 at 10:12
define table layout separately and include in both the activities...! – Noby Nov 14 '11 at 10:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.