3

I am dynamically creating a StackView object in my Android project. How can I accomplish the following equivalent properties dynamically through code?

android:animateLayoutChanges="true"
android:loopViews="true"
midhunhk
  • 5,560
  • 7
  • 52
  • 83

3 Answers3

1

For animateLayoutChanges you can refer this.

And for the loopViews i am not getting any method but you can refer this.

Hope you got the Point. You can easilt search on developer site of Android for any other methods/function and its properties.

Shreyash Mahajan
  • 23,386
  • 35
  • 116
  • 188
0

There is no way to change loopViews, but you can try to pass it through constructor using styles.

vovkab
  • 1,292
  • 11
  • 17