Reputation: 128827
I use a LinearLayout
and first I have a MapView
and below the map I have a TableLayout
with informations fields.
Now I would like to add additional information fields (e.g. a new TableLayout
) when the user select a specific menu item on the Options Menu. I would like to have these fields either between the MapView
and the TableLayout
, or on top of the bottom area of the MapView
.
How can I add this TableLayout
with additional information fields dynamically after the user has selected a menu item? How can I show it below the MapView
or on top of the bottom area of the MapView
?
Upvotes: 1
Views: 1196