Android SDK has TableLayout container:
<TableLayout
android:id="@+id/tablelayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableRow>
<TextView
android:text="Some text"
android:padding="3dip" />
</TableRow>
</TableLayout>
TableLayout has layout_width and layout_height. Almost every View needs to specify the layout_width and layout_height in xml. But the TableRow does not require it.
I want to create Layout(extended from FrameLayout) which elements will not require layout_width and layout_height (I will calculate the size internally with some magic).
How can I remove the layout_width/layout_height requirement from xml for my custom view?