how to add button dynamically in android?
|
Have a look to this example |
|||||||
|
|
try this:
|
|||||||
|
|
Try this:
|
||||
|
|
|
Try this code
|
|||
|
|
|
Try following code.
layout.add(btn); like this you add Buttons as per your requirements. |
|||
|
|
|
Actually I add to the xml layout file anything that could be used! Then from the source code of the specific Activity I get the object by its id and I "play" with the visibility method. Here is an example:
|
|||||
|
|
I've used this (or very similar) code to add several TextViews to a LinearLayout:
The main difference between this and dicklaw795's code is it doesn't set() and re-get() the ID for each TextView--I found it unnecessary, although I may need it to later identify each button in a common handler routine (e.g. one called by onClick() for each TextView). |
|||
|
|
