ArcLayout icon indicating copy to clipboard operation
ArcLayout copied to clipboard

How to add new Child to ArcLayout programmatically ?

Open himanshumoriglobus opened this issue 8 years ago • 2 comments

I am creating a circle view of members using arclayout. I saw your sample there we have added fixed child items in its layout. which is fixed but I want it to be variable/ dynamic that i can add new child at runtime. sample

himanshumoriglobus avatar Jul 20 '16 13:07 himanshumoriglobus

No Problem i solved it myself.

arcLayout = (ArcLayout) findViewById(R.id.myacrLayout);

View item = (View) inflater.inflate(R.layout.arc_layout_item, null);

arcLayout.addView(item);

we can inflate a layout and add its view to arcLayout....

himanshumoriglobus avatar Aug 05 '16 15:08 himanshumoriglobus

@himanshumoriglobus Can you help me to achieve a scrollable arc with this library?

SMARTVIK avatar Jan 27 '22 19:01 SMARTVIK