ArcLayout
ArcLayout copied to clipboard
How to add new Child to ArcLayout programmatically ?
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
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 Can you help me to achieve a scrollable arc with this library?