Posts by Pedro Henrique Lomnitzer • 31 points
2 posts
-
1
votes2
answers457
viewsA: How to create dynamically several times the same layout?
I got!!! @Override public void onClick(View v) { LinearLayout newlayout = new LinearLayout(getContext()); newlayout.setLayoutParams(new…
-
2
votes2
answers457
viewsQ: How to create dynamically several times the same layout?
I created a layout called with a "+" button at the end so that I would like, when clicking the button, to be added a new Linearlayout below the current layout with the same content, allowing the…